mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-14 12:18:01 +00:00
Add vue router
This commit is contained in:
25
src/components/Login.vue
Normal file
25
src/components/Login.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<v-form v-model="valid">
|
||||
<v-text-field
|
||||
v-model="username"
|
||||
label="Username"
|
||||
required
|
||||
/>
|
||||
|
||||
<v-text-field
|
||||
v-model="password"
|
||||
label="Password"
|
||||
type="password"
|
||||
required
|
||||
/>
|
||||
|
||||
<v-btn
|
||||
class="mr-4"
|
||||
type="submit"
|
||||
>
|
||||
Submit
|
||||
</v-btn>
|
||||
</v-form>
|
||||
</v-container>
|
||||
</template>
|
||||
Reference in New Issue
Block a user