Skip to content
Snippets Groups Projects
Commit dd041672 authored by Matt Kirby's avatar Matt Kirby
Browse files

removed unused imports

parent 97b6b57f
No related branches found
No related tags found
No related merge requests found
import BasicField from "@/components/form/basicField"; import BasicField from "@/components/form/basicField";
import NavBar from "@/components/navigation/NavBar"; import { useState } from "react";
import { LockClosedIcon } from "@heroicons/react/24/outline";
import { useEffect, useState } from "react";
const Register = () => { const Register = () => {
const [username, setUsername] = useState<string>(""); const [username, setUsername] = useState<string>("");
...@@ -35,13 +33,13 @@ const Register = () => { ...@@ -35,13 +33,13 @@ const Register = () => {
<> <>
<div className="flex min-h-full items-center justify-center px-4 py-12 sm:px-6 lg:px-8"> <div className="flex min-h-full items-center justify-center px-4 py-12 sm:px-6 lg:px-8">
<div className="w-full max-w-md space-y-8"> <div className="w-full max-w-md space-y-2">
<h2 className="mt-6 text-center text-3xl font-bold tracking-tight text-gray-900"> <h2 className="mt-6 text-center text-3xl font-bold tracking-tight text-gray-900">
Create an account Create an account
</h2> </h2>
<p className="mt-2 text-center text-sm text-gray-600"> <p className=" text-center text-sm text-gray-600">
Or{' '} Or{' '}
<a href="#" className="font-medium text-c-pink hover:text-indigo-500"> <a href="/signIn" className="font-medium text-c-pink hover:text-indigo-500">
log in log in
</a> </a>
</p> </p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment