Add login form
This commit is contained in:
parent
ab01a459af
commit
8b5ac8c19f
2 changed files with 24 additions and 0 deletions
12
auth/login.html
Normal file
12
auth/login.html
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<header>
|
||||||
|
<h1>Login</h1>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<form method="post">
|
||||||
|
<label>Login</label>
|
||||||
|
<input type="text" name="login" />
|
||||||
|
<label>Password</label>
|
||||||
|
<input type="password" name="password" />
|
||||||
|
<button type="submit">login</button>
|
||||||
|
</form>
|
||||||
|
</main>
|
||||||
12
auth/wrongPassword.html
Normal file
12
auth/wrongPassword.html
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<header>
|
||||||
|
<h1>Wrong Password</h1>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<form method="post">
|
||||||
|
<label>Login</label>
|
||||||
|
<input type="text" name="login" />
|
||||||
|
<label>Password</label>
|
||||||
|
<input type="password" name="password" />
|
||||||
|
<button type="submit">login</button>
|
||||||
|
</form>
|
||||||
|
</main>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue