1
0
Fork 0
pixelfed/resources/views/auth/register.blade.php

106 lines
5.8 KiB
PHP
Raw Normal View History

2018-04-16 00:00:49 +00:00
@extends('layouts.app')
@section('content')
2018-05-30 02:46:27 +00:00
<div class="container mt-4">
2018-04-16 00:00:49 +00:00
<div class="row justify-content-center">
2019-08-17 07:48:25 +00:00
<div class="col-lg-5">
2018-05-30 02:46:27 +00:00
<div class="card">
<div class="card-header bg-white p-3 text-center font-weight-bold">{{ __('Register a new account') }}</div>
2018-04-16 00:00:49 +00:00
<div class="card-body">
2019-08-17 07:48:25 +00:00
<form method="POST" action="{{ route('register') }}" class="px-md-3">
2018-04-16 00:00:49 +00:00
@csrf
2021-12-29 07:38:08 +00:00
<input type="hidden" name="rt" value="{{ (new \App\Http\Controllers\Auth\RegisterController())->getRegisterToken() }}">
2018-04-16 00:00:49 +00:00
<div class="form-group row">
2018-05-30 02:46:27 +00:00
<div class="col-md-12">
2019-08-17 07:48:25 +00:00
<label class="small font-weight-bold text-lighter">Name</label>
2018-05-30 02:46:27 +00:00
<input id="name" type="text" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" name="name" value="{{ old('name') }}" placeholder="{{ __('Name') }}" required autofocus>
2018-04-16 00:00:49 +00:00
@if ($errors->has('name'))
<span class="invalid-feedback">
<strong>{{ $errors->first('name') }}</strong>
</span>
@endif
</div>
</div>
2018-04-16 00:23:02 +00:00
<div class="form-group row">
2018-05-30 02:46:27 +00:00
<div class="col-md-12">
2019-08-17 07:48:25 +00:00
<label class="small font-weight-bold text-lighter">Username</label>
2018-05-30 02:46:27 +00:00
<input id="username" type="text" class="form-control{{ $errors->has('username') ? ' is-invalid' : '' }}" name="username" value="{{ old('username') }}" placeholder="{{ __('Username') }}" required>
2018-04-16 00:23:02 +00:00
@if ($errors->has('username'))
<span class="invalid-feedback">
<strong>{{ $errors->first('username') }}</strong>
</span>
@endif
</div>
</div>
2018-04-16 00:00:49 +00:00
<div class="form-group row">
2018-05-30 02:46:27 +00:00
<div class="col-md-12">
2019-08-17 07:48:25 +00:00
<label class="small font-weight-bold text-lighter">Email</label>
2018-05-30 02:46:27 +00:00
<input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" placeholder="{{ __('E-Mail Address') }}" required>
2018-04-16 00:00:49 +00:00
@if ($errors->has('email'))
<span class="invalid-feedback">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group row">
2018-05-30 02:46:27 +00:00
<div class="col-md-12">
2019-08-17 07:48:25 +00:00
<label class="small font-weight-bold text-lighter">Password</label>
2018-05-30 02:46:27 +00:00
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" placeholder="{{ __('Password') }}" required>
2018-04-16 00:00:49 +00:00
@if ($errors->has('password'))
<span class="invalid-feedback">
<strong>{{ $errors->first('password') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group row">
2018-05-30 02:46:27 +00:00
<div class="col-md-12">
2019-08-17 07:48:25 +00:00
<label class="small font-weight-bold text-lighter">Confirm Password</label>
2018-05-30 02:46:27 +00:00
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" placeholder="{{ __('Confirm Password') }}" required>
2018-04-16 00:00:49 +00:00
</div>
</div>
2019-08-17 07:48:25 +00:00
2019-12-03 02:15:52 +00:00
<div class="form-group row">
<div class="col-md-12">
<div class="form-check">
<input class="form-check-input" name="agecheck" type="checkbox" value="true" id="ageCheck" required>
<label class="form-check-label" for="ageCheck">
I am at least 16 years old
</label>
</div>
</div>
</div>
@if((bool) config_cache('captcha.enabled') && (bool) config_cache('captcha.active.register'))
2020-12-13 04:04:59 +00:00
<div class="d-flex justify-content-center my-3">
2020-12-13 04:12:30 +00:00
{!! Captcha::display() !!}
2020-12-13 04:04:59 +00:00
</div>
@endif
2019-08-17 07:48:25 +00:00
<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>
2018-06-01 17:58:43 +00:00
2018-05-30 02:46:27 +00:00
<div class="form-group row">
<div class="col-md-12">
<button type="submit" class="btn btn-primary btn-block py-0 font-weight-bold">
2018-04-16 00:00:49 +00:00
{{ __('Register') }}
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection