Added a login page for identity provider server

This commit is contained in:
David J. Allen 2024-04-17 17:27:03 -06:00
parent 0ca88e1a84
commit 57166c5ee4
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

13
pages/login.html Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<div class="log-form">
<h2>Login to your account</h2>
<form action="/api/login" method="post">
<input type="text" id="username" name="username" title="username" placeholder="Enter your username or email..." /><br/>
<input type="password" id="password" name="password" title="password" placeholder="Enter your password..." /><br/>
<button type="submit" class="btn">Login</button><br/>
<a class="forgot" href="#">Forgot Username?</a><br/>
<label>(hint: try 'ochami' for both username and password)</label>
</form>
</div><!--end log form -->
</html>