1
0
Fork 0

Update register view

This commit is contained in:
Daniel Supernault 2019-08-17 01:48:25 -06:00
parent 22d75629f7
commit cd7ea97500
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 9 additions and 13 deletions

View File

@ -3,26 +3,17 @@
@section('content')
<div class="container mt-4">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-7 mb-3">
<div class="card">
<div class="card-body text-center">
<p class="h4 font-weight-bold pt-5">A Photo Sharing Experience For Everyone</p>
<div class="p-5 mb-5">
<img src="/img/Macbook__ipad__iphone.svg" width="100%">
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-5">
<div class="col-lg-5">
<div class="card">
<div class="card-header bg-white p-3 text-center font-weight-bold">{{ __('Register a new account') }}</div>
<div class="card-body">
<form method="POST" action="{{ route('register') }}" class="px-5">
<form method="POST" action="{{ route('register') }}" class="px-md-3">
@csrf
<div class="form-group row">
<div class="col-md-12">
<label class="small font-weight-bold text-lighter">Name</label>
<input id="name" type="text" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" name="name" value="{{ old('name') }}" placeholder="{{ __('Name') }}" required autofocus>
@if ($errors->has('name'))
@ -35,6 +26,7 @@
<div class="form-group row">
<div class="col-md-12">
<label class="small font-weight-bold text-lighter">Username</label>
<input id="username" type="text" class="form-control{{ $errors->has('username') ? ' is-invalid' : '' }}" name="username" value="{{ old('username') }}" placeholder="{{ __('Username') }}" required>
@if ($errors->has('username'))
@ -47,6 +39,7 @@
<div class="form-group row">
<div class="col-md-12">
<label class="small font-weight-bold text-lighter">Email</label>
<input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" placeholder="{{ __('E-Mail Address') }}" required>
@if ($errors->has('email'))
@ -59,6 +52,7 @@
<div class="form-group row">
<div class="col-md-12">
<label class="small font-weight-bold text-lighter">Password</label>
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" placeholder="{{ __('Password') }}" required>
@if ($errors->has('password'))
@ -71,9 +65,12 @@
<div class="form-group row">
<div class="col-md-12">
<label class="small font-weight-bold text-lighter">Confirm Password</label>
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" placeholder="{{ __('Confirm Password') }}" required>
</div>
</div>
<p class="small">By signing up, you agree to our <a href="{{route('site.terms')}}" class="font-weight-bold text-dark">Terms of Use</a> and <a href="{{route('site.privacy')}}" class="font-weight-bold text-dark">Privacy Policy</a>.</p>
<div class="form-group row">
<div class="col-md-12">
@ -82,7 +79,6 @@
</button>
</div>
</div>
<p class="mb-0 font-weight-bold text-lighter small">By signing up, you agree to our <a href="{{route('site.terms')}}" class="text-muted">Terms of Use</a> and <a href="{{route('site.privacy')}}" class="text-muted">Privacy Policy</a>.</p>
</form>
</div>
</div>