Created
November 4, 2018 13:40
-
-
Save pfieffer/47fa96eef03b50c5bff03be9087c5a0f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--from scratch coding, here. --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Password Salting</title> | |
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"> | |
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"> | |
<link rel="stylesheet" type="text/css" href="css/bootstap-theme.css"> | |
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class='row'> | |
<div class='col-sm-12'> | |
<!-- Bootstrap form--> | |
<form action="login.php" method="POST" role='form'> | |
<div class="form-group"> | |
<label for="username">Username</label> | |
<input type="text" class="form-control" name="username" placeholder="Enter your username" > | |
</div> | |
<div class="form-group"> | |
<label for="password">Password</label> | |
<input type="password" class="form-control" name="password" placeholder="Password"> | |
</div> | |
<!--Button--> | |
<input type="submit" class="btn btn-default" value="Sign In">. | |
</form> | |
<br><br> | |
<text class="text-muted">Not registered? Sign up easily!</textarea> | |
<br> | |
<!--Button pseudoclass according to bootstrap--> | |
<a href="newuser.php" class="btn btn-default" role="button">Sign Up</a> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment