Skip to content

Instantly share code, notes, and snippets.

@haridutt12
Created January 17, 2019 05:08
Show Gist options
  • Save haridutt12/c76cc1199a5bfa9b07940f1cf94e2f63 to your computer and use it in GitHub Desktop.
Save haridutt12/c76cc1199a5bfa9b07940f1cf94e2f63 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>Document</title>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="active"><a href="myattempt.html">Welcome</a></li>
<li><a href="signin.html">Sign in</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1>Log In</h1>
<p>Enter your email and password below to log in to Coffee Lover</p>
</div>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Keep me Logged In
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment