-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingUp.html
More file actions
48 lines (44 loc) · 1.66 KB
/
singUp.html
File metadata and controls
48 lines (44 loc) · 1.66 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/main.css" />
<title>Login</title>
</head>
<body>
<div class="main">
<div class="contetn">
<div class="inputs">
<div class="header">
<h3>MCoin SignUp</h3>
<hr>
</div>
<div class="controller">
<div class="form-controller">
<label class="form-lbl" for="userName">User Name</label>
<input type="text" id="userName" placeholder="User Name" />
</div>
<br>
<div class="form-controller">
<label class="form-lbl" for="phone">Phone Number</label>
<input type="tel" id="phone" placeholder="Phone Number" />
</div>
<br>
<div class="form-controller">
<label class="form-lbl" for="password">password</label>
<input type="password" id="password" placeholder="password" />
</div>
<br>
<div class="form-submit">
<a class="btn-success block">Sign Up</a>
</div>
<a href="Login.html">Have Account? Login</a>
</div>
</div>
<div class="images">
<img src="image/reset-password.png" class="img-login" alt="login">
</div>
</div>
</div>
</body>
</html>