forked from Mohitkumar33/bootstrap-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap_project_signup.html
More file actions
41 lines (36 loc) · 1.26 KB
/
bootstrap_project_signup.html
File metadata and controls
41 lines (36 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Project</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="navbar-header">
<a class="navbar-brand" href="bootstrap_project.html">Welcome User!</a>
</div>
<ul class="nav navbar-nav">
<li><a href="#">Landing page my me</a></li>
</ul>
</nav>
<div class="container">
<div class="jumbotron">
<h1>Log in!</h1>
<p>Enter your Email and Password</p>
</div>
<form class="form-group">
<label for="userem">Email:</label>
<input type="email" class="form-control" name="userem" placeholder="Enter Your Email">
<label for="userpass">Password:</label>
<input type="password" class="form-control" name="userpass" placeholder="Enter Your Password">
<div class="checkbox">
<label for="usercheck">
<input type="checkbox" name="usercheck" value="">
Keep Me logged In</label>
</div>
<button type="submit" class="btn btn-success" name="button">Submit</button>
</form>
</div>
</body>
</html>