-
Notifications
You must be signed in to change notification settings - Fork 0
/
merchant-login.html
36 lines (35 loc) · 1.24 KB
/
merchant-login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Login</title>
</head>
<body>
<div class="login-box">
<form action="">
<h2>Login</h2>
<br><h3>(for Merchant)</h3>
<div class="input-group">
<div>
<h5>Username</h5>
<input type="text" class="input">
</div>
</div>
<div class="input-group">
<div>
<h5>Password</h5>
<input type="password" class="input">
</div>
</div>
<a href="#">Forgot Password?</a>
<input type="submit" class="btn" value="Login">
</form>
</div>
</div>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>