Files
2026-02-03 08:18:39 -06:00

30 lines
950 B
HTML

<!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>