-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.4 KB
/
index.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>Transparent HTML Login Form</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/solid.css">
<link rel="stylesheet" type="text/css" href="LogInStyle.css">
</head>
<body>
<div class="modal-dialog text-center">
<div class="col-sm-9 main-section">
<div class="modal-content">
<div class="col-12 user-img">
<img src="images/face.png">
</div>
<div class="col-12 form-input">
<form>
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter Email">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Enter Password">
</div>
<a href="homePage.html" class="btn btn-success">Login</a>
</form>
<div class="col-12 forgot">
<a href="#">Forgot Password?</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>