Clean up login/register forms
This commit is contained in:
parent
05a3cb1b34
commit
51debc3182
|
|
@ -3,25 +3,10 @@
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="max-w-lg mx-auto text-center text-white">
|
<div class="max-w-lg mx-auto text-center text-white">
|
||||||
<img class="mx-auto" src="/favicon.png" alt="">
|
<img class="mx-auto" src="/favicon.png" alt="" />
|
||||||
<p class="text-5xl font-bold">Login to Rowblox!</p>
|
<div class="flex flex-col">
|
||||||
<input
|
<input class="rounded-lg w-72 px-4 border-2 border-blue-500 text-black mx-auto my-1.5 py-2" type="username" name="username" id="username" placeholder="Username" />
|
||||||
class="rounded-lg px-10 border-2 border-blue-500 text-black flex flex-col mx-auto my-4 py-2"
|
<input class="rounded-lg w-72 px-4 border-2 border-blue-500 text-black mx-auto my-1.5 py-2" type="password" name="password" id="password" placeholder="Password" />
|
||||||
type="text"
|
|
||||||
name="username"
|
|
||||||
id="username"
|
|
||||||
placeholder="Username"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
class="rounded-lg px-10 border-2 border-blue-500 text-black flex flex-col mx-auto my-5 py-2"
|
|
||||||
type="password"
|
|
||||||
name="pass"
|
|
||||||
id="password"
|
|
||||||
placeholder="Password"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div class="text-xl text-white">
|
|
||||||
<a class="px-5 py-1 rounded shadow-lg border-2 border-blue-500" href="/my/profile">Login</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
<button class="my-1.5 text-xl text-white px-4 py-1 w-full rounded shadow-lg border-2 border-blue-500">Login</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -3,39 +3,12 @@
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="max-w-lg mx-auto text-center text-white">
|
<div class="max-w-lg mx-auto text-center text-white">
|
||||||
<img class="mx-auto" src="/favicon.png" alt="">
|
<img class="mx-auto" src="/favicon.png" alt="" />
|
||||||
<p class="text-5xl font-bold">Create an Account!</p>
|
<div class="flex flex-col">
|
||||||
<input
|
<input class="rounded-lg w-72 px-4 border-2 border-blue-500 text-black mx-auto my-1.5 py-2" type="username" name="username" id="username" placeholder="Username" />
|
||||||
class="rounded-lg px-10 border-2 border-blue-500 text-black flex flex-col mx-auto my-4 py-2"
|
<input class="rounded-lg w-72 px-4 border-2 border-blue-500 text-black mx-auto my-1.5 py-2" type="password" name="password" id="password" placeholder="Password" />
|
||||||
type="text"
|
<input class="rounded-lg w-72 px-4 border-2 border-blue-500 text-black mx-auto my-1.5 py-2" type="password" name="passwordconfirm" id="passwordconfirm" placeholder="Confirm Password" />
|
||||||
name="username"
|
<input class="rounded-lg w-72 px-4 border-2 border-blue-500 text-black mx-auto my-1.5 py-2" type="text" name="invite" id="invite" placeholder="Invite Key" />
|
||||||
id="username"
|
|
||||||
placeholder="Username"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
class="rounded-lg px-10 border-2 border-blue-500 text-black flex flex-col mx-auto my-5 py-2"
|
|
||||||
type="password"
|
|
||||||
name="pass"
|
|
||||||
id="password"
|
|
||||||
placeholder="Password"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
class="rounded-lg px-10 border-2 border-blue-500 text-black flex flex-col mx-auto my-5 py-2"
|
|
||||||
type="password"
|
|
||||||
name="password"
|
|
||||||
id="passwordconfirm"
|
|
||||||
placeholder="Confirm Password"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
class="rounded-lg px-10 border-2 border-blue-500 text-black flex flex-col mx-auto my-4 py-2"
|
|
||||||
type="text"
|
|
||||||
name="invite"
|
|
||||||
id="invitekey"
|
|
||||||
placeholder="Invite key"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div class="text-xl text-white">
|
|
||||||
<a class="px-5 py-1 rounded shadow-lg border-2 border-blue-500" href="/login">Register</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
<button class="my-1.5 text-xl text-white px-4 py-1 w-full rounded shadow-lg border-2 border-blue-500">Register</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue