mirror of
https://github.com/Noratrieb/oh-oh.git
synced 2026-01-17 02:15:05 +01:00
init
This commit is contained in:
commit
1772e21364
13 changed files with 2961 additions and 0 deletions
29
idp/templates/signup.html
Normal file
29
idp/templates/signup.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Signup - IDP</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Create a new account</h1>
|
||||
<a href="/">home</a>
|
||||
<form method="post" action="/signup">
|
||||
<div>
|
||||
<label for="username">Username</label>
|
||||
<input id="username" name="username" />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="password">Password</label>
|
||||
<input id="password" name="password" />
|
||||
</div>
|
||||
|
||||
<button type="submit">Create Account</button>
|
||||
|
||||
{% if already_exists %}
|
||||
<p>Username is already taken</p>
|
||||
{% endif %}
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue