Files
Polyboard/html/login.html
T
2024-02-20 10:25:34 -07:00

26 lines
749 B
HTML
Executable File

<section>
<div class="container ubuntuMono">
<h4 class="noselect ubuntuMono"><!--Place title here!!!--> - Log in</h4>
<input id="usernamebox" name="username" placeholder="B0b5m1th" required>
<label for="username" class="noselect">Username</label>
<input type="password" class="form-control" id="passwordbox" name="password" placeholder="Password" value="" required>
<label for="password" class="noselect">Password</label>
<button onclick="submit()">Log in</button>
</div>
</div>
</section>
<script>
function submit(){
const usernamebox = utils.getel('usernamebox')
const passwordbox = utils.getel('passwordbox')
authLogin(usernamebox.value, passwordbox.value)
}
window.main = ()=>{}
</script>