-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.15 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>Gym</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="custom_style.css" />
</head>
<body>
<div class="container">
<form class="form-signin" method="post" action="./login.php">
<h1 class="form-signin-heading">Login</h1>
<div class="form-group">
<label for="email">Email</label>
<input type="text" class="form-control" id="user_email" name="user_email" placeholder="Email" required />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="user_password" class="form-control" name="user_password" placeholder="Password" required />
</div>
<button type="submit" class="btn btn-lg btn-primary btn-block" name="submit" >Login</button>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>