-
Notifications
You must be signed in to change notification settings - Fork 0
/
market-place-form.html
49 lines (42 loc) · 1.81 KB
/
market-place-form.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
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="market-place-style.css">
<link rel="stylesheet" href="util.css">
<title>Register</title>
</head>
<body>
<div class="form container flex-center">
<div class="main">
<h2>Create an Account<span class="secondary-color dot">.</span></h2>
<p>Already have an Account? <a href="./market-place-login.html">Login</a></p>
<form action="/register" method="post">
<div class="form-wrapper flex-center">
<div class="input-wrapper">
<label for="username">Username:</label>
<input type="text" name="username" id="username" placeholder="e.g. itzUser" autofocus>
</div>
<div class="radio-button">
<button type="submit">Provider:</button>
<button type="submit">Bussinessman</button>
</div>
</div>
<div class="bus">
</div>
<div class="input-wrapper">
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="e.g. [email protected]">
</div>
<div class="input-wrapper">
<label for="password">Password:</label>
<input type="password" name="password" id="password">
</div>
<input type="submit" value="Create New Account" class="btn btn-shadow-main bg-main">
</div>
</form>
</div>
</div>
</body>
</html>