29 lines
615 B
HTML
29 lines
615 B
HTML
---
|
|
title: login
|
|
layout: page
|
|
favicon: gray
|
|
background: gray
|
|
---
|
|
|
|
<style>
|
|
#content input {
|
|
font-size: 4vw;
|
|
}
|
|
</style>
|
|
|
|
<div id="content">
|
|
<h1 style="font-size: 5vw;">
|
|
login
|
|
</h1>
|
|
<br><br><br>
|
|
<form action="./submit/" method="post">
|
|
<input type="text" autocomplete="username" id="username" placeholder="username field"/><br><br>
|
|
<input type="password" id="value" placeholder="password input field" value="password"/><br><br>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
This page contains a <code><form></code> with username and password inputs.
|
|
</div>
|