mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-03-29 21:25:33 -05:00
28 lines
725 B
Handlebars
28 lines
725 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{> head }}
|
|
<body>
|
|
{{> navbar }}
|
|
|
|
<h1>Admin panel here</h1>
|
|
<h2>register</h2>
|
|
<form action="/admin/api/v1/register" method="POST">
|
|
<input type="text" name="username">
|
|
<input type="text" name="password">
|
|
<button>submit register</button>
|
|
</form>
|
|
|
|
<h2>login</h2>
|
|
<form action="/admin/api/v1/login" method="POST">
|
|
<input type="text" name="username">
|
|
<input type="text" name="password">
|
|
<button>submit login</button>
|
|
</form>
|
|
|
|
<a href="/admin/api/v1/check">Check if logged in</a>
|
|
|
|
{{> footer }}
|
|
</body>
|
|
</html>
|