eden-api-gateway/app/templates/signup.html

19 lines
455 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Signup</title>
</head>
<body>
<h1>Signup</h1>
<form method="POST" action="{{ url_for('signup') }}">
<label for="username">Username:</label>
<input type="text" name="username" required>
<br>
<label for="password">Password:</label>
<input type="password" name="password" required>
<br>
<button type="submit">Signup</button>
</form>
</body>
</html>