added sku and ready for tracking

This commit is contained in:
franknstayn
2021-12-01 00:57:21 +08:00
parent 705dd3795e
commit f07e5aaa8e
14 changed files with 760 additions and 623 deletions

View File

@@ -2,10 +2,11 @@
@section('main-content')
<style>
.error{
.error {
color: red;
}
.form-wrapper{
.form-wrapper {
margin-top: 20%;
}
</style>
@@ -21,19 +22,16 @@
<div class="row justify-content-center">
<div class="col col-lg-5">
<div id="login-response-msg"></div>
<form role="form" id="frm-login">
<form role="form" id="frm-login">
<input type="hidden" name="redirect" value="{{ Request::get('redirectUrl') }}">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"
>Email address</label
>
<input type="email" class="form-control" name="email" value="{{ old('email') }}" title="Please enter your email address" placeholder="example@gmail.com">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" name="email" value="{{ old('email') }}" title="Please enter your email address" placeholder="example@gmail.com">
<!-- <div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div> -->
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label"
>Password</label
>
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" name="password" placeholder="Password" title="Please enter your password">
</div>
<button type="submit" class="btn btn-green btn-sm w-100">
@@ -42,22 +40,16 @@
</form>
<div class="text-center py-3">
<nuxt-link to="/auth/reset-password"
>Forgot your password?</nuxt-link
>
<nuxt-link to="/auth/reset-password">Forgot your password?</nuxt-link>
</div>
<hr class="custom-hr" />
<div class="text-center py-3">
Don't have an account?
<a
href="{{ url('./auth/register')}}"
class="btn btn-black btn-sm w-100"
>Register</a
>
<a href="{{ url('./auth/register')}}" class="btn btn-black btn-sm w-100">Register</a>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@endsection