-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
36 lines (35 loc) · 1004 Bytes
/
signup.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">
<title>Sign up</title>
<link rel="stylesheet" href="./style/common.css" type="text/css">
<link rel="stylesheet" href="./style/signup.css" type="text/css">
</head>
<body>
<div class="page-canvas">
<div class="signin-wrapper">
<h1>Sign up to Miniter</h1>
<form>
<filedset>
<div class="clearfix">
<input type="text", placeholder="Enter ID">
</div>
<div class="clearfix">
<input type="text", placeholder="Enter Name">
</div>
<div class="clearfix">
<input type="password", placeholder="Password">
</div>
<div class="clearfix">
<input type="textarea", placeholder="Enter Profile">
</div>
</filedset>
<div class="clearfix clearfix-button">
<button class="clearfix-button" type="submit" class="submit">Sign up</button>
</div>
</form>
</div>
</div>
</body>
</html>