|
@@ -1,4 +1,4 @@
|
|
|
-<?php
|
|
|
+<?php
|
|
|
$layoutBlade = 'layouts.login';
|
|
|
if(config('app.internalName') === 'rs'){
|
|
|
$layoutBlade = 'layouts.login-rs';
|
|
@@ -8,10 +8,10 @@
|
|
|
@section('content')
|
|
|
|
|
|
<div id="formView">
|
|
|
- <div class="d-flex align-items-center flex-column text-center p-3">
|
|
|
- <div class="flex-grow-1 single-form-heading font-weight-medium">Create Account</div>
|
|
|
- <p class="text-muted">An HR profile is required before scheduling an appointment with the appropriate HR specialist.</p>
|
|
|
- </div>
|
|
|
+ <div class="d-flex align-items-center flex-column text-center p-3">
|
|
|
+ <div class="title text-pry mb-3">Create Account</div>
|
|
|
+ <p class="text-muted" style="font-size:17px">An HR profile is required before scheduling an appointment with the appropriate HR specialist.</p>
|
|
|
+ </div>
|
|
|
<form action="{{route('submit-account-setup')}}" class="form" method="post">
|
|
|
<div class="icon_wrap">
|
|
|
<img src="{{asset('/img/login_icon.svg')}}" alt="">
|
|
@@ -52,10 +52,9 @@
|
|
|
@enderror
|
|
|
<div class="text-sm text-danger pass-warning mt-2" style="display:none;">Minimum 6 characters required.</div>
|
|
|
</div>
|
|
|
-
|
|
|
<div class="row mb-4">
|
|
|
- <div class="col-12 text-center">
|
|
|
- <input type="submit" name="Submit" value="Create Account" disabled="true" class="btn btn-orange text-uppercase py-2 px-4">
|
|
|
+ <div class="col-12">
|
|
|
+ <input type="submit" name="Submit" value="Create Account" class="btn btn-pry rounded-pill py-2 px-lg-4 wb-100">
|
|
|
</div>
|
|
|
</div>
|
|
|
</form>
|
|
@@ -64,10 +63,10 @@
|
|
|
var checkValidation = function() {
|
|
|
$('[type=password]').on('keyup', function(){
|
|
|
if ($(this).val().length < 6) {
|
|
|
- $('[type=submit]').prop('disabled', true);
|
|
|
+
|
|
|
$('.pass-warning').show();
|
|
|
}else {
|
|
|
- $('[type=submit]').prop('disabled', false);
|
|
|
+
|
|
|
$('.pass-warning').hide();
|
|
|
}
|
|
|
})
|