Cleaned up login page.
Build and Test App / Build-and-test-App (push) Successful in 33s Details

This commit is contained in:
Andrew Lalis 2025-02-24 20:27:52 -05:00
parent f8fa2023c8
commit aa8067dc9c
1 changed files with 5 additions and 4 deletions

View File

@ -29,14 +29,15 @@ async function doLogin() {
</script>
<template>
<main class="centered-content">
<h1 class="align-center">Login</h1>
<h1 class="align-center">Login to Teacher-Tools</h1>
<form>
<div class="login-input-row">
<input id="username-input" name="username" type="text" v-model="credentials.username" placeholder="Username" />
<label for="username-input">Username</label>
<input id="username-input" name="username" type="text" v-model="credentials.username" />
</div>
<div class="login-input-row">
<input id="password-input" name="password" type="password" v-model="credentials.password"
placeholder="Password" />
<label for="password-input">Password</label>
<input id="password-input" name="password" type="password" v-model="credentials.password" />
</div>
<div class="button-bar align-center">
<button type="button" @click="doLogin" style="font-size: large;">Login</button>