-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup_template.html
More file actions
48 lines (34 loc) · 1.15 KB
/
signup_template.html
File metadata and controls
48 lines (34 loc) · 1.15 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>course Sign Up</title>
</head>
<body>
<h1><b></b>Couse Sign Up Page</h1>
<p>Please Note: First Name ,Last Name ,Email address required </p>
<form action="Thankyou.html" class="" method="get">
<label for="fn">First Name</label>
<input id="fn" type="text" name="" placeholder="enter first name here" required>
<label for="ln"> last Name</label>
<input id="ln" type="text" name="" placeholder="enter last name here" required>
<br>
<label for="mail">Mail:</label>
<input id="mail" type="email" name="" placeholder=""required>
<label for="pass">Password</label>
<input type="password" name="" value=""required>
<p>Are you over 18?</p>
<label for="Y">yes:</label>
<input id="y"type="radio" name="over" value="">
<label for="N">No:</label>
<input id="N"type="radio" name="over" value="">
<p>Do you have a credit card or Paypal?</p>
<select name="payment">
<option value="cc">credit card</option>
<option value="pp">Paypal </option>
</select>
<p></p>
<input type="submit" name="" value="Sign Up">
</form>
</body>
</html>