20 lines
522 B
HTML
20 lines
522 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head.html" .}} <!-- Include header template -->
|
|
|
|
<body>
|
|
{{template "header.html" .}}
|
|
<h2>Setup Admin Account</h2>
|
|
<form method="post">
|
|
<label>Name:</label>
|
|
<input type="text", name="name" required><br>
|
|
<label>Email:</label>
|
|
<input type="email" name="email" required><br>
|
|
|
|
<label>Password:</label>
|
|
<input type="password" name="password" required><br>
|
|
|
|
<button type="submit">Create Admin</button>
|
|
</form>
|
|
</body>
|
|
</html>
|