strife/register.php

36 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2024-11-10 07:13:49 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Strife | Register</title>
<link rel="stylesheet" href="style.css"> <!-- Link to the updated CSS -->
</head>
<body>
<section id="register">
<h2>Welcome to Strife!</h2>
<p>Please enter your details to register.</p>
<hr>
<form>
<label for="username">Username: </label>
<input id="username" type="text" name="username" placeholder="Username" required>
<label for="email">Email: </label> <!-- Added email input -->
<input id="email" type="email" name="email" placeholder="Email" required>
<label for="password">Password: </label>
<input id="password" type="password" name="password" placeholder="Password" required>
<label for="confirm-password">Confirm Password: </label>
<input id="confirm-password" type="password" name="confirm-password" placeholder="Confirm Password" required>
<button id="submit-register" type="submit">Submit</button>
</form>
<hr>
<h3>Already have an account?</h3>
<p>Log in below!</p>
<a href="login.php">Login</a>
</section>
<script src="./js/register.js"></script>
</body>
</html>