Last active
June 27, 2020 10:49
-
-
Save PrasathRavichandran/22d76f7238ae14d74dbe4ee0a474d0e5 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Bootstrap 5 demo</title> | |
<link rel="stylesheet" href="./styles/main.css"> | |
</head> | |
<body class="d-flex text-center bg-secondary"> | |
<form class="form-login"> | |
<img src="/node_modules/bootstrap-icons/icons/bootstrap.svg" alt="" height="72" width="72" class="mb-4" /> | |
<h1 class="h3 mb-3 font-weight-normal">Sign Up</h1> | |
<div class="mb-3"> | |
<label for="exampleInputEmail1" class="sr-only">Email address</label> | |
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email address" | |
aria-describedby="emailHelp"> | |
</div> | |
<div class="mb-3"> | |
<label for="exampleInputPassword1" class="sr-only">Password</label> | |
<input type="password" class="form-control" placeholder="Password" id="exampleInputPassword1"> | |
</div> | |
<div class="mb-3 checkbox"> | |
<label> | |
<input type="checkbox" id="exampleCheck1"/> Check me out | |
</label> | |
</div> | |
<button type="submit" class="btn btn-lg btn-primary btn-block">Signup</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment