1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/resources/views/signup.blade.php

50 lines
1.7 KiB
PHP
Raw Permalink Normal View History

@extends('layouts.base')
@section('css')
<link rel='stylesheet' href='/css/signup.css' />
@endsection
@section('content')
<div class='col-md-6'>
<h2 class='title'>Register</h2>
<form action='/signup' method='POST'>
Username: <input type='text' name='username' class='form-control form-field' placeholder='Username' />
Password: <input type='password' name='password' class='form-control form-field' placeholder='Password' />
Email: <input type='email' name='email' class='form-control form-field' placeholder='Email' />
@if (env('POLR_ACCT_CREATION_RECAPTCHA'))
<div class="g-recaptcha" data-sitekey="{{env('POLR_RECAPTCHA_SITE_KEY')}}"></div>
@endif
<input type="hidden" name='_token' value='{{csrf_token()}}' />
<input type="submit" class="btn btn-default btn-success" value="Register"/>
<p class='login-prompt'>
<small>Already have an account? <a href='{{route('login')}}'>Login</a></small>
</p>
</form>
</div>
<div class='col-md-6 hidden-xs hidden-sm'>
<div class='right-col-one'>
<h4>Username</h4>
<p>The username you will use to login to {{env('APP_NAME')}}.</p>
</p>
<div class='right-col-next'>
<div class='right-col'>
<h4>Password</h4>
<p>The secure password you will use to login to {{env('APP_NAME')}}.</p>
</p>
</div>
<div class='right-col-next'>
<h4>Email</h4>
<p>The email you will use to verify your account or to recover your account.</p>
</p>
</div>
@endsection
@section('js')
@if (env('POLR_ACCT_CREATION_RECAPTCHA'))
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
@endif
@endsection