Last active
January 7, 2021 20:44
-
-
Save kingRayhan/4c4d65c0a5280f1555728a90e6b95e8e to your computer and use it in GitHub Desktop.
Fire Reddit Components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form | |
class=" flex justify-items-end flex-col items-end p-2 border-gray-600 border mb-3" | |
> | |
<div class="flex"> | |
<input | |
type="text" | |
placeholder="Email" | |
class=" border-gray-600 border px-3 py-1 w-1/2 mr-3 focus:outline-none focus:border-primaryDark" | |
v-model="form.email" | |
/> | |
<input | |
type="text" | |
placeholder="Email" | |
class=" border-gray-600 border px-3 py-1 w-1/2 focus:outline-none focus:border-primaryDark" | |
v-model="form.passwor" | |
/> | |
</div> | |
<div> | |
<a href="#">Forgot password?</a> | |
<button class=" bg-gray-200 mt-2 px-3 border-gray-600 border"> | |
Login | |
</button> | |
</div> | |
</form> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment