32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="../assets/hard-disk.ico" type="image/x-icon">
|
|
<title>Signup</title>
|
|
<link rel="stylesheet" href="../css/profile.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="signup-form">
|
|
<form action="/signup" method="post">
|
|
<div class="signup-form-title">
|
|
<h2>Profile</h2>
|
|
<hr>
|
|
</div>
|
|
<div>
|
|
<input type="email" name="email" placeholder="Email">
|
|
<input type="text" name="username" placeholder="Username">
|
|
<input type="password" name="password" placeholder="Password">
|
|
</div>
|
|
<div class="signup-form-footer">
|
|
<button type="button" name="login">Back</button>
|
|
<button type="submit" name="submit">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|