-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
39 lines (32 loc) · 1.73 KB
/
login.html
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
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="login.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="login_form" class="container card row justify-content-center">
<div class="card-header text-center lead font-weight-bolder bg-dark text-white">Login</div>
<div class="card-body text-center">
<form>
<label for="user_email">Email
<input type="email" name="user_email" id="user_email" class="form-control text-center" placeholder="Enter Email">
</label>
<br>
<label for="user_password">Password
<input type="password" name="user_password" id="user_password" class="form-control text-center" placeholder="Enter Password">
</label>
<br>
<input id="submit_btn" type="submit" class="btn btn-primary" value="Submit">
</form>
<div id="wrong_login" class="small text-danger col-12"></div>
<div id="resgister" class="text-secondary col-12 text-center">
Not a user? Sign up <a href="register.html">here</a>
</div>
</div>
</div>
<script type="text/javascript" src="login.js"></script>
</body>
</html>