Created
November 18, 2018 02:40
-
-
Save rajatk16/57f5b9d07d6bf5265815bc0c47e3dac2 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="login"> | |
| <img src="../assets/dc_logo.jpg" width="300px"> | |
| <h3>DC Comics Rebirth - Covers</h3> | |
| <input | |
| type="text" | |
| v-model="email" | |
| placeholder="Email address" | |
| class="input" | |
| required> | |
| <br/> | |
| <input | |
| type="password" | |
| v-model="password" | |
| placeholder="Password" | |
| class="input" | |
| required> | |
| <br/> | |
| <button v-on:click="login" class="button">Enter</button> | |
| <p><router-link to="/signup"> | |
| New Here? Create a new account | |
| </router-link></p> | |
| </div> | |
| </template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment