Commit 070a5009 authored by Rutesh Rathod's avatar Rutesh Rathod
Browse files

URL problem solved

parent 58335a29
No related merge requests found
Showing with 67 additions and 69 deletions
...@@ -22,81 +22,79 @@ ...@@ -22,81 +22,79 @@
<div class="login-inner-form"> <div class="login-inner-form">
<div class="details"> <div class="details">
<h3>Sign into your account</h3> <h3>Sign into your account</h3>
<form> <div
<div class="form-group"
class="form-group" :class="{ error: errors.has('email_id') }"
: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> </div>
<input <div
type="email" class="form-group"
placeholder="Email" :class="{ error: errors.has('email_id') }"
class="form-control" >
autocomplete <label>Password</label>
name="email_id" <input
v-model="em.email_id" type="password"
/> placeholder="password"
class="form-control"
<small autocomplete
class="form-text text-danger" name="password"
v-if="errors.has(email_id)" v-model="em.password"
>{{ $t(errors.first("email_id")) }}</small />
>
</div> <small
<div class="form-text text-danger"
class="form-group" v-if="errors.has(email_id)"
:class="{ error: errors.has('email_id') }" >{{ $t(errors.first("email_id")) }}</small
> >
<label>Password</label> </div>
<input
type="password" <div class="form-group row m-t-20">
placeholder="password" <div class="col-12 mb-3">
class="form-control" <div class="custom-control custom-checkbox">
autocomplete <input
name="password" type="checkbox"
v-model="em.password" id="customControlInline"
/> class="custom-control-input"
/>
<small <label
class="form-text text-danger" for="customControlInline"
v-if="errors.has(email_id)" class="custom-control-label"
>{{ $t(errors.first("email_id")) }}</small >Remember me</label
>
</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"
> >
Submit Email
</button>
</div> </div>
</div> </div>
<div class="form-group m-t-10 mb-0 row"> <div class="col-12 text-center">
<div class="col-12 m-t-20"> <button
<a href="pages-recoverpw.html" class="text-muted"> type="submit"
<i class="mdi mdi-lock" /> Forgot your password? class="btn btn-block btn-primary"
</a> @click="abx"
</div> >
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>
</form> </div>
<p> <p>
Don't have an account? Don't have an account?
<router-link to="applicantRegistration"> <router-link to="applicantRegistration">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment