added old projects
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Member Login</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Member Login</h1>
|
||||
<form action="/login" method="post">
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
|
||||
<label for="password">Password:</label>
|
||||
<input type="password" id="password" name="password" required>
|
||||
|
||||
<button type="submit">Login</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Member Profile</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Member Profile</h1>
|
||||
<form action="/update-profile" method="post">
|
||||
<label for="name">Name:</label>
|
||||
<input type="text" id="name" name="name" required>
|
||||
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
|
||||
<label for="phone">Phone:</label>
|
||||
<input type="tel" id="phone" name="phone" required>
|
||||
|
||||
<label for="communication_preferences">Communication Preferences:</label>
|
||||
<select id="communication_preferences" name="communication_preferences" required>
|
||||
<option value="Email">Email</option>
|
||||
<option value="SMS">SMS</option>
|
||||
<option value="Phone">Phone</option>
|
||||
</select>
|
||||
|
||||
<button type="submit">Update Profile</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Member Registration</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Member Registration</h1>
|
||||
<form action="\scripts\register_member.php" method="post">
|
||||
<label for="name">Name:</label>
|
||||
<input type="text" id="name" name="name" required>
|
||||
|
||||
<label for="email">Email:</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
|
||||
<label for="phone">Phone:</label>
|
||||
<input type="tel" id="phone" name="phone" required>
|
||||
|
||||
<label for="join_date">Join Date:</label>
|
||||
<input type="date" id="join_date" name="join_date" required>
|
||||
|
||||
<label for="membership_status">Membership Status:</label>
|
||||
<select id="membership_status" name="membership_status" required>
|
||||
<option value="Active">Active</option>
|
||||
<option value="Inactive">Inactive</option>
|
||||
</select>
|
||||
|
||||
<button type="submit">Register</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user