Skip to content

Commit

Permalink
merged in @stuartwashere login button
Browse files Browse the repository at this point in the history
  • Loading branch information
izakrobles committed Oct 31, 2023
1 parent 46f3adc commit 83725e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/lib/pages/loginPage/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"use client";
import React, { useState, useEffect } from "react";
import Image from "next/image";
import LoginButton from "../../components/login_button";

const Page = () => {
const [username, setUsername] = useState("");
Expand Down Expand Up @@ -46,7 +47,7 @@ const Page = () => {
<button className="mb-2 text-sm text-blue-500 hover:underline">
Forgot Password?
</button>
<h3>Login Button Goes Here</h3>
<LoginButton username={username} password={password}></LoginButton>
<h3>Register Button Goes Here</h3>
</div>
{snackState && (
Expand Down

0 comments on commit 83725e1

Please sign in to comment.