-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (36 loc) · 1.48 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
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Transparent Login Form with Bootstrap 4</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">
<script src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="modal-dialog text-center">
<div class="col-sm-8 main-section">
<div class="modal-content">
<div class="col-12 user-img">
<img src="img/face.png" alt="">
</div>
<form class="col-12">
<div class="form-group">
<input type="email" class='form-control' placeholder="Enter E-mail">
</div>
<div class="form-group">
<input type="password" class='form-control' placeholder="Enter Password">
</div>
<button type="submit" class="btn"> <i class="fas fa-sign-in-alt"></i>Login</button>
</form>
<div class="col-12 forgot">
<a href="#">Forgot Password?</a>
</div>
</div><!--End of modal content -->
</div>
</div>
</body>
</html>