-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
76 lines (61 loc) · 2.77 KB
/
signup.html
File metadata and controls
76 lines (61 loc) · 2.77 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://www.foodpanda.com/wp-content/uploads/2020/07/cropped-panda-head_pink-32x32.png"
sizes="32x32" />
<link rel="stylesheet" href="./css/feedback.css" />
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap" rel="stylesheet">
<title>Sign Up</title>
</head>
<body>
<div class="container">
<!-- Header -->
<header class="header">
<h1 id="title" class="text-center" style="font-family: Abril Fat Face; font-weight:bold; color: black;
font-size: 6rem;">Sign Up</h1>
<p id="description" class="description text-center" style="font-family: cursive;
font-size: 1.6rem; color: black;">
Surround yourself with delicious food, not Negativity !!!
</p>
</header>
<!-- Full Name -->
<form id="survey-form" action="connect.php" method="POST">
<div class="form-group">
<label id="name-label" for="name">Full Name *</label>
<input type="text" name="fullName" id="name" class="form-control" placeholder="Enter your full name"
required />
</div>
<!-- E-mail -->
<div class="form-group">
<label id="email-label" for="email">Email *</label>
<input type="email" name="eMail" id="email" class="form-control" placeholder="Enter your Email"
required />
</div>
<!-- Phone Number -->
<div class="form-group">
<label id="number-label" for="number">Phone Number *</label>
<input type="tel" name="phoneNumber" id="number" class="form-control"
placeholder="Enter your Phone Number" />
</div>
<!-- Check Box -->
<div class="form-group">
<p>
Do you agree to our * <a href="https://www.foodpanda.co.jp/en/contents/terms-and-conditions.htm"
style="color: white">Terms & Conditions</a> ?
</p>
<label><input name="prefer" type="checkbox" class="input-checkbox" required />Yes</label>
<!-- Submit Button -->
<div class="form-group">
<button type="submit" id="submit" class="submit-button" style="color: white;">
<a href="index.html" style="text-decoration: none;">
Submit
</a>
</button>
</div>
</form>
</div>
</body>
</html>