-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssignup.php
executable file
·91 lines (79 loc) · 3.33 KB
/
ssignup.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
include ("php/connect.php");
session_start ();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>TeenZee - Navigating Teenage Life</title>
<link rel="stylesheet" href="style/style.css">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header section -->
<header>
<a href="home.html"><img class="h-logo" src="pictures/teenzee-logo.webp" alt=""></a>
<h1>Welcome to TeenZee</h1>
<p><b>Your guide to navigating life as a teenager</b></p>
</header>
<main>
<!-- Navigation Bar -->
<nav>
<a href="form.php">Register</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
<a href="resources.html">Resources</a>
<a href="home.html"> Home</a>
</nav>
<!-- Login Section -->
<div class="bbody">
<div class="login-container">
<div class="form-box">
<form id="signup-form" action="php/signup.php" method="POST" name="Formfill">
<h2>Register</h2>
<div class="input-box">
<input type="text" name="Username" placeholder="Username" required>
</div>
<div class="input-box">
<input type="email" name="Email" placeholder="Email" required>
</div>
<div class="input-box">
<input type="password" name="Password" placeholder="Password" required>
</div>
<div class="input-box">
<input type="password" name="ConfirmPassword" placeholder="Confirm Password" required>
</div>
<div class="input-box">
<select name="role" required>
<option value="">Select Role</option>
<option value="student">Student</option>
<option value="mentor">Mentor</option>
</select>
</div>
<div class="btn">
<input type="submit" name="signup" value="Signup"> <!-- Add name="signup" here -->
</div>
<div class="group">
<span><p>Already have an Accout <br><a href="form.php">Sign in here</a></p></span>
</div>
</form>
</div>
</div>
<div></div>
<div class="space"></div>
<footer>
<p>Follow us on social media:</p>
<ul>
<li><a href="https://www.facebook.com/victor chibuike" target="_blank">Facebook</a></li>
<li><a href="https://www.instagram.com" target="_blank">Instagram</a></li>
<li><a href="https://www.twitter.com/viktor chibuike" target="_blank">X (Twitter)</a></li>
<li><a href="mailto:[email protected]">Email Us</a></li>
</ul>
<p>© 2024 TeenZee. All rights reserved.</p>
</footer>
</body>
</html>