821bfceb09
Added configuration options to allow reCAPTCHA to be integrated into the registration process. reCAPTCHA response is validated on sign-up if enabled.
105 lines
5.1 KiB
PHP
105 lines
5.1 KiB
PHP
@extends('themes.base.layout')
|
|
|
|
@section('title', trans('auth.register_page_title'))
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">@yield('title')</div>
|
|
<div class="panel-body">
|
|
<form class="form-horizontal" role="form" method="POST" action="{{ url('/register') }}">
|
|
{{ csrf_field() }}
|
|
|
|
<div class="form-group{{ $errors->has('name') ? ' has-error' : '' }}">
|
|
<label for="name" class="col-md-4 control-label">@lang('forms.realname_label')</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="name" type="text" class="form-control" name="name" value="{{ old('name') }}" autofocus>
|
|
|
|
@if ($errors->has('name'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('name') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
|
|
<label for="email" class="col-md-4 control-label">@lang('forms.email_label')</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="email" type="email" class="form-control" name="email" value="{{ old('email') }}">
|
|
|
|
@if ($errors->has('email'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('email') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
|
|
<label for="password" class="col-md-4 control-label">@lang('forms.password_label')</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="password" type="password" class="form-control" name="password">
|
|
|
|
@if ($errors->has('password'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('password') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
|
|
<label for="password-confirm" class="col-md-4 control-label">@lang('forms.password_confirm_label')</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="password-confirm" type="password" class="form-control" name="password_confirmation">
|
|
|
|
@if ($errors->has('password_confirmation'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('password_confirmation') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
@if (UserConfig::get('recaptcha_enabled_registration'))
|
|
<div class="form-group">
|
|
@if ($errors->has('recaptcha'))
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger">
|
|
<i class="fa fa-fw fa-warning"></i>
|
|
{{ $errors->first('recaptcha') }}
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="col-md-6 col-md-offset-4">
|
|
<div class="g-recaptcha" data-sitekey="{{ UserConfig::get('recaptcha_site_key') }}"></div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="form-group">
|
|
<div class="col-md-6 col-md-offset-4 text-right">
|
|
<a href="{{ route('home') }}" class="btn btn-default">@lang('forms.cancel_action')</a>
|
|
<button type="submit" class="btn btn-success">@lang('forms.register_action')</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@if (UserConfig::get('recaptcha_enabled_registration'))
|
|
@push('scripts')
|
|
<script src="https://www.google.com/recaptcha/api.js"></script>
|
|
@endpush
|
|
@endif |