-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrf.html
More file actions
35 lines (34 loc) · 1.23 KB
/
rf.html
File metadata and controls
35 lines (34 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./rfstyle.css">
<title>Registration Page</title>
</head>
<body>
<div class="form-box">
<form class="register">
<div class="a">
<input type="text" class="input-field" placeholder="Organisation Name" required>
</div>
<div class="a">
<input type="text" class="input-field" placeholder="User Id" required>
</div>
<div class="a">
<input type="email" class="input-field" placeholder="Email Id" required>
</div>
<div class="a">
<input type="text" class="input-field" placeholder="Enter Password" required>
</div>
<div class="a">
<input type="checkbox" class="check-box"><span>I agree to the terms & conditions</span>
</div>
<button type="submit" class="submit-btn">Register</button>
<p>Already Registered ?</p>
<a href="index.html">
<button type="button" class="toggle-btn">LOGIN</button></a>
</form>
</div>
</body>
</html>