-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseller.html
32 lines (31 loc) · 1018 Bytes
/
seller.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
<!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">
<link rel="stylesheet" href="seller.css">
<title>Document</title>
</head>
<body>
<div class="split left">
<div class="centered">
</div>
</div>
<div class="split right">
<div class="centered">
<img src="./assets/avatar.png" alt="">
<h2>Hey Seller.</h2>
<p><form>
<label for="email">Username Or Email</label><br>
<input type="email" id="email-id" name="email-id"><br>
<label for="pwd">Password:</label><br>
<input type="password" id="password" name="pwd"><br><br>
<input type="submit" value="Login"><br>
<a href="newaccount.html">Create a new seller account.</a>
</form>
</p>
</div>
</div>
</body>
</html>