File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change 55 @submit.prevent =" forgotPassword"
66 class =" p-5 bg-white border rounded shadow"
77 >
8- <div class =" mb-4" >
9- <label for =" email" class =" text-sm text-gray-500" >Email</label >
10- <input
11- type =" email"
12- id =" email"
13- v-model =" email"
14- 15- class =" block w-full px-3 py-2 placeholder-gray-400 border border-gray-300 rounded-md shadow-sm appearance-none focus:outline-none focus:ring-blue-500 focus:border-blue-500"
16- />
17- </div >
18- <BaseBtn type =" submit" text =" Forgot Password" />
8+ <BaseInput
9+ type =" email"
10+ label =" Email"
11+ name =" email"
12+ v-model =" email"
13+ autocomplete =" email"
14+ 15+ class =" mb-4"
16+ />
17+ <BaseBtn type =" submit" text =" Send" />
1918 </form >
2019 <FlashMessage :message =" message" :error =" error" />
2120 </div >
2423<script >
2524import { getError } from " @/utils/helpers" ;
2625import BaseBtn from " @/components/BaseBtn" ;
26+ import BaseInput from " @/components/BaseInput" ;
2727import AuthService from " @/services/AuthService" ;
2828import FlashMessage from " @/components/FlashMessage" ;
2929
3030export default {
3131 name: " ForgotPassword" ,
3232 components: {
3333 BaseBtn,
34+ BaseInput,
3435 FlashMessage,
3536 },
3637 data () {
You can’t perform that action at this time.
0 commit comments