-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsignup.php
59 lines (52 loc) · 2.43 KB
/
signup.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup - Pawfect Pawtrails</title>
<link rel="stylesheet" href="signin-styles.css">
<link rel="icon" type="icon/x-icon" href="resources/Pawfect Pawtrails-4.png">
</head>
<body>
<div class="image-wrapper">
<a class="paw" href="home.php">
<img src="resources/Pawfect Pawtrails-transparent.png" alt="Pawfect Pawtrails">
</a>
</div>
<main>
<div>
<section class="signup-section">
<h2>Create Your Account</h2>
<form action="backend/register.php" method="post" onsubmit="return validate();">
<label for="name">Name:</label>
<input type="text" id="username" name="username" placeholder="Enter your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
<div class="form-options">
<div class="terms-conditions">
<input type="checkbox" id="terms" name="terms" required>
<label for="terms">I accept the <a href="info/tos.php" target="_blank">Terms of Service</a> & <a href="info/privary-policy.php" target="_blank">Privacy Policy</a></label>
</div>
</div>
<button type="submit" class="btn">Signup</button>
</form>
<div class="login-option">
<p>Already have an account? <a href="login.php">Log In</a></p>
</div>
</section>
</div>
</main>
<footer>
<div class="content">
<section class="footer-links">
<ul>
<li><a class="link" href="info/privary-policy.php" target="_blank">Privacy Policy</a></li>
<li><a class="link" href="info/tos.php" target="_blank">Terms of Service</a></li>
</ul>
</section>
</div>
</footer>
</body>
</html>