2020-01-18 20:46:06 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
@include('partials.SEO.meta')
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
|
|
|
|
<title>
|
|
|
|
@!section('page-title')
|
|
|
|
</title>
|
|
|
|
{{ style('style') }}
|
2020-02-15 17:34:42 +00:00
|
|
|
{{ script('scripts/views/register/app.bundle.js') }}
|
2020-01-18 20:46:06 +00:00
|
|
|
@!section('scripts')
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
@!section('nav')
|
|
|
|
|
|
|
|
@!section('hero')
|
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
|
|
|
@!section('content')
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
2020-01-19 18:44:15 +00:00
|
|
|
<div class="hero is-primary">
|
|
|
|
<section class="section has-text-centered">
|
|
|
|
<h1 class="title">Join Now</h1>
|
|
|
|
<h2 class="subtitle">It takes less then a minute. You could have been done by now, but you are still reading...</h2>
|
2020-02-15 17:34:42 +00:00
|
|
|
<form class="form register" method="POST" action="{{ route('register') }}" id="form-register">
|
2020-01-19 18:44:15 +00:00
|
|
|
{{ csrfField() }}
|
|
|
|
<nav class="level">
|
|
|
|
<div class="field">
|
|
|
|
<label class="label has-text-light">Name</label>
|
|
|
|
<div class="control has-icons-left">
|
2020-02-15 17:34:42 +00:00
|
|
|
<input class="input {{ getErrorFor('name') ? 'is-danger' : ''}}" required="true" name="name" type="text" placeholder="John Snow" value="{{ old('name', '') }}">
|
2020-01-19 18:44:15 +00:00
|
|
|
<span class="icon is-small is-left">
|
|
|
|
<i class="fa fa-id-card"></i>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<p class="help is-danger">{{ getErrorFor('name') ? getErrorFor('name') : '' }}</p>
|
|
|
|
</div>
|
2020-01-26 22:16:16 +00:00
|
|
|
|
|
|
|
|
2020-01-19 18:44:15 +00:00
|
|
|
<div class="field">
|
|
|
|
<label class="label has-text-light">Email</label>
|
|
|
|
<div class="control has-icons-left">
|
2020-02-15 17:34:42 +00:00
|
|
|
<input class="input {{ getErrorFor('email') ? 'is-danger' : ''}}" name="email" required="true" type="email" placeholder="j.snow@thewall.com" value="{{ old('email', '') }}">
|
2020-01-19 18:44:15 +00:00
|
|
|
<span class="icon is-small is-left">
|
|
|
|
<i class="fa fa-envelope"></i>
|
|
|
|
</span>
|
2020-01-26 22:16:16 +00:00
|
|
|
|
2020-01-19 18:44:15 +00:00
|
|
|
</div>
|
|
|
|
<p class="help is-danger">{{ getErrorFor('email') ? getErrorFor('email') : '' }}</p>
|
|
|
|
</div>
|
2020-01-26 22:16:16 +00:00
|
|
|
|
2020-01-19 18:44:15 +00:00
|
|
|
<div class="field">
|
|
|
|
<label class="label has-text-light">Password</label>
|
|
|
|
<div class="control has-icons-left">
|
2020-02-15 17:34:42 +00:00
|
|
|
<input class="input {{ getErrorFor('password') ? 'is-danger' : ''}}" id="txt-register-password" name="password" required="true" type="password" placeholder="password">
|
2020-01-19 18:44:15 +00:00
|
|
|
<span class="icon is-small is-left">
|
|
|
|
<i class="fa fa-lock"></i>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<p class="help is-danger">{{ getErrorFor('password') ? getErrorFor('password') : '' }}</p>
|
|
|
|
</div>
|
2020-01-24 17:30:56 +00:00
|
|
|
<div class="field m-b-xxs">
|
2020-01-19 18:44:15 +00:00
|
|
|
<label class="label has-text-light">Confirm Password</label>
|
|
|
|
<div class="control has-icons-left">
|
2020-02-15 17:34:42 +00:00
|
|
|
<input class="input" type="password" id="txt-register-confirm-password" placeholder="confirm password" required="true">
|
2020-01-19 18:44:15 +00:00
|
|
|
<span class="icon is-small is-left">
|
|
|
|
<i class="fa fa-lock"></i>
|
|
|
|
</span>
|
|
|
|
</div>
|
2020-01-24 17:30:56 +00:00
|
|
|
<p class="help is-danger">{{ '' }}</p>
|
2020-01-19 18:44:15 +00:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<nav class="level">
|
|
|
|
<div class="field is-grouped">
|
|
|
|
<div class="control">
|
|
|
|
<label class="checkbox">
|
2020-02-15 18:07:23 +00:00
|
|
|
<input type="checkbox" id="chk-register-terms" name="terms">
|
2020-01-19 18:44:15 +00:00
|
|
|
I agree to the <a href="#">terms and conditions</a>
|
|
|
|
</label>
|
2020-02-15 18:07:23 +00:00
|
|
|
<p class="help is-danger">{{ getErrorFor('terms') ? getErrorFor('terms') : '' }}</p>
|
2020-01-19 18:44:15 +00:00
|
|
|
<div class="control">
|
2020-02-15 17:34:42 +00:00
|
|
|
<button id="btn-register-submit" class="button is-link" disabled="true">Submit</button>
|
2020-01-19 18:44:15 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2020-01-26 22:16:16 +00:00
|
|
|
|
2020-01-19 18:44:15 +00:00
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
</div>
|
2020-01-26 22:16:16 +00:00
|
|
|
@include('partials.footer')
|
2020-01-18 20:46:06 +00:00
|
|
|
</body>
|
2020-01-26 22:16:16 +00:00
|
|
|
</html>
|