-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathregistration.html
More file actions
30 lines (30 loc) · 1010 Bytes
/
registration.html
File metadata and controls
30 lines (30 loc) · 1010 Bytes
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
<html>
<head>
<title>registration form</title>
<link rel="stylesheet" href="regi.css">
</head>
<body>
<div class="box">
<h2>Register</h2>
<form action="" method="post">
<div class="inputbox">
<input type="text" name="" required="">
<label>user name</label>
</div>
<div class="inputbox">
<input type="text" name="" required="">
<label>address</label>
</div>
<div class="inputbox">
<input type="number" name="" required="">
<label>phone number</label>
</div>
<div class="inputbox">
<input type="password" name="" required="" >
<label>Password</label>
</div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>