28 lines
957 B
PHP
28 lines
957 B
PHP
<?php include 'header.php'; ?>
|
|
|
|
<main>
|
|
<div class="auth-container">
|
|
<h1>Create Account</h1>
|
|
<form action="signup_process.php" method="POST">
|
|
<div class="form-group">
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" name="name" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
<button type="submit" class="btn-submit">Sign Up</button>
|
|
</form>
|
|
<div class="form-footer">
|
|
<p>Already have an account? <a href="login.php">Log in</a></p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php include 'footer.php'; ?>
|