forked from shamilkeheliya/Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.h
55 lines (50 loc) · 1.6 KB
/
new.h
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
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RegistrationForm_v2 by Colorlib</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- MATERIAL DESIGN ICONIC FONT -->
<link rel="stylesheet" href="fonts/material-design-iconic-font/css/material-design-iconic-font.min.css">
<!-- STYLE CSS -->
<link rel="stylesheet" href="kelum.css">
</head>
<body>
<div class="wrapper" style="background-image: url('images/bg-registration-form-2.jpg');">
<div class="inner">
<form action="">
<h3>Registration Form</h3>
<div class="form-group">
<div class="form-wrapper">
<label for="">First Name</label>
<input type="text" class="form-control">
</div>
<div class="form-wrapper">
<label for="">Last Name</label>
<input type="text" class="form-control">
</div>
</div>
<div class="form-wrapper">
<label for="">Email</label>
<input type="text" class="form-control">
</div>
<div class="form-wrapper">
<label for="">Password</label>
<input type="password" class="form-control">
</div>
<div class="form-wrapper">
<label for="">Confirm Password</label>
<input type="password" class="form-control">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> I caccept the Terms of Use & Privacy Policy.
<span class="checkmark"></span>
</label>
</div>
<button>Register Now</button>
</form>
</div>
</div>
</body><!-- This templates was made by Fantacy Designs (https://fantacydesigns.com/) -->
</html>