forked from Ayodejioladimeji/crisisIT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.76 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 1.76 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
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CrisisIT</title>
<link rel="stylesheet" href="./css/index.css">
<link rel="shortcut icon" href="./assets/Asset.png"/>
</head>
<body>
<div class="container">
<div class="container-grid">
<div class="grid-left">
<div class="header">
<img src="assets/crisis.png" alt="">
</div>
<div class="main">
<img src="assets/Asset.png" alt="">
<p>CrisisIT helps you stay safe and take critical actions
easily in times of distress.
</p>
</div>
</div>
<div class="grid-right">
<div class="grid-input">
<h2>Sign In</h2>
<p>Sign in to view statistics and activities from users</p>
<div class="form-input">
<label for="email">Email Address</label>
<input type="text" id="email" class="email" placeholder="name@gmail.com">
</div>
<div class="form-input">
<label for="password">Password</label>
<input type="password" id="password" class="password" placeholder="*****************"">
<i class="fa fa-eye-slash"></i>
</div>
<a href="dashboard.html">
<button>Log In</button>
</a>
</div>
</div>
</div>
</div>
</body>
</html>