Eliminare 'indexold.html'

This commit is contained in:
Franca Debole 2019-09-03 15:47:39 +02:00
parent 3794582cf7
commit d27089ff4d
1 changed files with 0 additions and 89 deletions

View File

@ -1,89 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Store form data in .txt file</title>
<link rel="stylesheet" href="bootstrap-4.3.1-dist/css/bootstrap.min.css"/>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="bootstrap-4.3.1-dist/js/bootstrap.min.js"></script>
<script src="bootstrap-4.3.1-dist/js/bootstrap.js"></script>
<script src="bootstrap-4.3.1-dist/js/validator.js"></script>
<style type="text/css">
.bd-example {
position: relative;
padding: 1rem;
margin: 10rem 10rem 10rem 10rem;
background-color: #f7f7f9;
border: solid #800;
border: 2;
}
hr{
border: 2px solid #800;
}
</style>
</head>
<body>
<div class="navbar-header">
<a class="navbar-brand" rel="home" href="#" title="Buy Sell Rent Everyting">
<img style="max-width:100px; margin-top: 17px;margin-left:1rem" src="logo.png">
</a>
</div>
<h1 align="center"> Migration Service </h1>
<div class="bd-example">
<form action="saveaccount.php" method="POST" data-toggle="validator" role="form">
<!-- <div class="form-group">
<label for="oldEmail">Email address</label>
<input type="email" class="form-control" name="inputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<div class="help-block with-errors"></div>
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div> -->
<div class="form-group">
<label for="oldAccount">Account/Username [old system]</label>
<input type="text" class="form-control" name="oldAccount" aria-describedby="accountHelp" placeholder="Enter account" required>
<div class="help-block with-errors"></div>
<small id="accountHelp" class="form-text text-muted">Inserisci l'account per il server di posta ISTI.</small>
</div>
<div class="form-group">
<label for="oldPassword">Password [old system]</label>
<input type="password" class="form-control" name="oldPassword" placeholder="Password" required>
<div class="help-block with-errors"></div>
</div>
<hr/>
<div class="form-group">
<label for="newAccount">New Account</label>
<input type="text" class="form-control" name="newAccount" aria-describedby="accountHelp" placeholder="Enter account" required>
<div class="help-block with-errors"></div>
<small id="accountHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<!-- <div class="form-group">
<label for="newPassword">New Password</label>
<input type="password" class="form-control" name="newPassword" aria-describedby="pswHelp" placeholder="Password" required>
<div class="help-block with-errors"></div>
</div>
-->
<div class="form-group">
<label for="newPassword" class="control-label">Password</label>
<div class="form-inline row">
<div class="form-group col-sm-4">
<input type="password" data-minlength="6" class="form-control" id="psw" name="newPassword" placeholder="Password" required>
<div class="help-block">Minimum of 6 characters</div>
</div>
<div class="form-group col-sm-4">
<input type="password" class="form-control" id="inputPasswordConfirm" data-match="#psw" data-match-error="Whoops, these don't match" placeholder="Confirm" required>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>