Created
November 18, 2018 02:59
-
-
Save rajatk16/aef76d8d649d64732c659c8f8d46ed47 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
| <div class="sign-up"> | |
| <img src="../assets/dc_logo.jpg" width="300px"> | |
| <h3>Create a new account</h3> | |
| <input | |
| v-model="email" | |
| type="text" | |
| class="input" | |
| placeholder="Email" | |
| required> | |
| <br> | |
| <input | |
| v-model="password" | |
| type="password" | |
| class="input" | |
| placeholder="Password" | |
| required> | |
| <br> | |
| <button v-on:click="signUp" class="button">Sign Up!</button> | |
| <button class="button"> | |
| <router-link to="/login"> | |
| Back | |
| </router-link> | |
| </button> | |
| </div> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment