-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
83 lines (58 loc) · 2.87 KB
/
form.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<link rel="stylesheet" href="form.css">
</head>
<body>
<form action="https://formspree.io/email" method="post" target="_blank" id="#">
<h3>#</h3>
<!--Main session of form-->
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="Enter Your Name" required>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Enter Valid Email" required>
<label for="phone">Phone</label>
<input type="tel" name="number" id="phone" placeholder="Enter Your Phone No" required>
<label for="gender">Gender</label>
<select name="gender" id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<label for="dob">Date of Birth</label>
<input type="date" name="dob" id="dob" selected>
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Enter Your Password" required>
<label for="password">Confirm Password</label>
<input type="password" name="password" id="password" placeholder="Re-enter Your Password" required>
<label for="platform">How do you know about us</label>
<select name="platform" id="platform">
<option value="select" selected>Select</option>
<option value="Facebookads">Facebook Ads</option>
<option value="Instagramads">Instagram Ads</option>
<option value="YouTubeads">YouTube Ads</option>
<option value="website"> Website</option>
<option value="other">Others</option><br>
</select>
<!-- Buttons and Checkbox -->
<input type="checkbox" id="t&c">
<label for="t&c">Agree Terms And Conditions</label>
<input type="submit" value="# For Free" class="button">
<!-- Other # Options -->
<h3>OR</h3>
<input type="button" value="Continue With Google" class="button">
<input type="button" value="Continue With Facebook" class="button">
<input type="button" value="Continue With Twitter" Class="button">
</form>
<form action="backed.php" method="get" id="login" class="">
<h3>LogIn</h3>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Enter your email" required>
<label for="password">password</label>
<input type="password" name="password" id="password" placeholder="Enter your password" required>
<input type="submit" value="LogIn" class="button">
</form>
</body>
</html>