From 070a50096d80f08b7378cc0a63b13bbc6f6dbcb6 Mon Sep 17 00:00:00 2001 From: Rutesh <ruteshr@mkcl.org> Date: Mon, 13 Jan 2020 17:02:50 +0530 Subject: [PATCH] URL problem solved --- src/views/ApplicantLogin.vue | 136 +++++++++++++++++------------------ 1 file changed, 67 insertions(+), 69 deletions(-) diff --git a/src/views/ApplicantLogin.vue b/src/views/ApplicantLogin.vue index ee92caf..1e3e1b7 100644 --- a/src/views/ApplicantLogin.vue +++ b/src/views/ApplicantLogin.vue @@ -22,81 +22,79 @@ <div class="login-inner-form"> <div class="details"> <h3>Sign into your account</h3> - <form> - <div - class="form-group" - :class="{ error: errors.has('email_id') }" + <div + class="form-group" + :class="{ error: errors.has('email_id') }" + > + <label>Email Id</label> + <input + type="email" + placeholder="Email" + class="form-control" + autocomplete + name="email_id" + v-model="em.email_id" + /> + + <small + class="form-text text-danger" + v-if="errors.has(email_id)" + >{{ $t(errors.first("email_id")) }}</small > - <label>Email Id</label> - <input - type="email" - placeholder="Email" - class="form-control" - autocomplete - name="email_id" - v-model="em.email_id" - /> - - <small - class="form-text text-danger" - v-if="errors.has(email_id)" - >{{ $t(errors.first("email_id")) }}</small - > - </div> - <div - class="form-group" - :class="{ error: errors.has('email_id') }" + </div> + <div + class="form-group" + :class="{ error: errors.has('email_id') }" + > + <label>Password</label> + <input + type="password" + placeholder="password" + class="form-control" + autocomplete + name="password" + v-model="em.password" + /> + + <small + class="form-text text-danger" + v-if="errors.has(email_id)" + >{{ $t(errors.first("email_id")) }}</small > - <label>Password</label> - <input - type="password" - placeholder="password" - class="form-control" - autocomplete - name="password" - v-model="em.password" - /> - - <small - class="form-text text-danger" - v-if="errors.has(email_id)" - >{{ $t(errors.first("email_id")) }}</small - > - </div> - - <div class="form-group row m-t-20"> - <div class="col-12 mb-3"> - <div class="custom-control custom-checkbox"> - <input - type="checkbox" - id="customControlInline" - class="custom-control-input" - /> - <label - for="customControlInline" - class="custom-control-label" - >Remember me</label - > - </div> - </div> - <div class="col-12 text-center"> - <button - type="submit" - class="btn btn-block btn-primary" - @click="abx" + </div> + + <div class="form-group row m-t-20"> + <div class="col-12 mb-3"> + <div class="custom-control custom-checkbox"> + <input + type="checkbox" + id="customControlInline" + class="custom-control-input" + /> + <label + for="customControlInline" + class="custom-control-label" + >Remember me</label > - Submit Email - </button> </div> </div> - <div class="form-group m-t-10 mb-0 row"> - <div class="col-12 m-t-20"> - <a href="pages-recoverpw.html" class="text-muted"> - <i class="mdi mdi-lock" /> Forgot your password? - </a> - </div> + <div class="col-12 text-center"> + <button + type="submit" + class="btn btn-block btn-primary" + @click="abx" + > + Submit Email + </button> + </div> + </div> + <div class="form-group m-t-10 mb-0 row"> + <div class="col-12 m-t-20"> + <a href="pages-recoverpw.html" class="text-muted"> + <i class="mdi mdi-lock" /> Forgot your password? + </a> </div> - </form> + </div> <p> Don't have an account? <router-link to="applicantRegistration"> -- GitLab