Skip to content

Commit

Permalink
final push
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-sliffe committed Dec 8, 2024
1 parent 4ebce1d commit f1f57ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/src/views/LoginPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Provides a login form for users to authenticate, including fields for email and

<template>
<div>
<h1>Login</h1>
<h1 class="center">Login</h1>
<form @submit.prevent="login">
<input v-model="email" type="email" placeholder="Email" required/>
<input v-model="password" type="password" placeholder="Password" required/>
<button type="submit">Login</button>
<button class="center" type="submit">Login</button>
</form>
<p>{{ errorMessage }}</p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions client/src/views/SignUpPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Provides a sign-up form for new users, allowing them to create an account with f

<template>
<div>
<h1>Sign Up</h1>
<h1 class="center">Sign Up</h1>
<form @submit.prevent="signup">
<input v-model="email" type="email" placeholder="Email" required/>
<input v-model="first_name" type="text" placeholder="First Name" required/>
<input v-model="last_name" type="text" placeholder="Last Name" required/>
<input v-model="phone_number" type="text" placeholder="Phone Number"/>
<input v-model="password" type="password" placeholder="Password" required/>
<button type="submit">Sign Up</button>
<button class="center" type="submit">Sign Up</button>
</form>
<p>{{ errorMessage }}</p>
</div>
Expand Down

0 comments on commit f1f57ce

Please sign in to comment.