-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathindex.html
43 lines (42 loc) · 1.42 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
43
<!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" />
<meta name="author" content="Sumit Saha" />
<meta name="owner" content="learnwithsumit.com" />
<title>Login</title>
<link rel="shortcut icon" href="./images/favicon.png" />
<link rel="stylesheet" href="./stylesheets/toastify.css" />
<link rel="stylesheet" href="./stylesheets/style.css" />
<script src="./js/toastify.js"></script>
</head>
<body>
<div class="menu">
<div class="menu-item"><a href="/inbox">Inbox</a></div>
<div class="menu-item"><a href="/users">Users</a></div>
<div class="menu-item"><a href="/">Login</a></div>
</div>
<div id="login-container">
<div id="left-column"></div>
<div id="branding">
<img src="./images/logo.png" />
<h1>Login - Chat Application</h1>
</div>
<div id="login-form">
<form method="post" action="/">
<input
type="text"
name="username"
placeholder="enter mobile or email"
value=""
/>
<p class="error show">Error message here</p>
<input type="password" name="password" placeholder="enter password" />
<input type="submit" value="Login" />
</form>
</div>
</div>
</body>
</html>