-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.89 KB
/
Copy pathindex.html
File metadata and controls
47 lines (41 loc) · 1.89 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
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>UMSATS Inventory Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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="bootstrap-social.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-xs-12 main-section">
<div class="modal-content">
<div class="col-12 user-img">
<img src="assets/img/UMSATS-banner.png">
</div>
<form class="col-12">
<div class="form-group">
<input type="email" class="form-control email" placeholder="Enter Email">
<input type="password" class="form-control pass" placeholder="Enter Password">
</div>
<button type="submit" class="btn"><i class="fas fa-sign-in-alt"></i>Login</button>
<div class="col-12 google">
<button type="submit" class="btn">
<i class="fab fa-google"></i>
Login with Google</button>
</div>
</form>
<div class="col-12 forgot">
<a href="#">No Account? / Forgot Password?</a>
</div>
</div><!-- End of modal content-->
</div>
</div>
</body>
</html>