13 lines
256 B
HTML
13 lines
256 B
HTML
|
@use super::base_html;
|
||
|
|
||
|
@()
|
||
|
|
||
|
@:base_html({
|
||
|
<form action="/admin/login" method="post">
|
||
|
<label for="password">admin password:</label>
|
||
|
<input type="text" id="password" name="password" required="true" />
|
||
|
<button type="submit">log in</button>
|
||
|
</form>
|
||
|
})
|
||
|
|