83 lines
3.2 KiB
PHP
83 lines
3.2 KiB
PHP
@extends('layouts.loggedout')
|
|
@section('title')
|
|
<title>Register - {{ env('APP_NAME') }}</title>
|
|
@endsection
|
|
@section('titlediscord')
|
|
<meta content="Register - {{ env('APP_NAME') }}" property="og:title" />
|
|
@endsection
|
|
@section('descdiscord')
|
|
<meta content="ARCHBLOX is a work in progress 2012 ROBLOX revival with a heavy emphasis on Skeuomorphic UI." property="og:description" />
|
|
@endsection
|
|
@section('contentloggedout')
|
|
<h1>SIGN UP HAS BEEN DISABLED TEMPORARILY</h1>
|
|
<br>
|
|
<br>
|
|
<h1>Welcome to ARCHBLOX!</h1>
|
|
<p>Have an account already? <a href="{{ route('login') }}">Click here</a> to log in.</p>
|
|
<br>
|
|
<p>Before signing up, please read the <a href="{{ route('privacy') }}">Privacy Policy</a> and the <a
|
|
href="{{ route('tos') }}">Terms of Service</a>.</p>
|
|
<br>
|
|
<form method="POST" action="{{ route('register') }}">
|
|
@csrf
|
|
<h3>Username</h3>
|
|
<input id="name" type="text" placeholder="Enter a username!" name="name" value="{{ old('name') }}" required
|
|
autocomplete="name" autofocus>
|
|
<p>Usernames must be 3-20 alphanumeric characters and can include underscores, dashes, points, and spaces.</p>
|
|
@error('name')
|
|
<div class="invalid-feedback" style="color:red">
|
|
<strong>{{ $message }}</strong>
|
|
</div>
|
|
@enderror
|
|
<br>
|
|
<h3>Email Address</h3>
|
|
<input id="email" type="email" name="email" value="{{ old('email') }}" required autocomplete="email">
|
|
@error('email')
|
|
<div class="invalid-feedback" style="color:red">
|
|
<strong>{{ $message }}</strong>
|
|
</div>
|
|
@enderror
|
|
<h3>Confirm Email Address</h3>
|
|
<input id="email-confirm" type="email" name="email_confirmation" value="{{ old('email_confirmation') }}" required
|
|
autocomplete="email">
|
|
@error('email_confirmation')
|
|
<div class="invalid-feedback" style="color:red">
|
|
<strong>{{ $message }}</strong>
|
|
</div>
|
|
@enderror
|
|
<br>
|
|
<h3>Date of Birth</h3>
|
|
<input id="dob" type="date" name="dob" value="{{ old('dob') }}" required>
|
|
@error('dob')
|
|
<div class="invalid-feedback" style="color:red">
|
|
<strong>{{ $message }}</strong>
|
|
</div>
|
|
@enderror
|
|
<br>
|
|
<h3>Password</h3>
|
|
<input id="password" type="password" name="password" required autocomplete="password">
|
|
<p class="helpfultip">Don't reuse passwords, or use weak passwords!</p>
|
|
<p>Passwords must be 8 or more characters with at least 1 capital letter, 1 symbol, and 1 number.</p>
|
|
@error('password')
|
|
<div class="invalid-feedback" style="color:red">
|
|
<strong>{{ $message }}</strong>
|
|
</div>
|
|
@enderror
|
|
<br>
|
|
<h3>Invite Key</h3>
|
|
<input id="key" type="text" name="key" placeholder="Invite Key" value="{{ old('key') }}" required>
|
|
@error('key')
|
|
<div class="invalid-feedback" style="color:red">
|
|
<strong>Invalid invite key! The invite key may be inactive or it no longer exists.</strong>
|
|
</div>
|
|
@enderror
|
|
<p>An Invite Key is required to sign up. You can obtain one from a person that has an ARCHBLOX Account.</p>
|
|
<p>Don't bother random people for keys, or beg for one.</p>
|
|
<br>
|
|
<!--SU BUTTON-->
|
|
@endsection
|
|
|
|
@php
|
|
// signup button goes here for now
|
|
//<button class="greenbutton" onClick="this.form.submit();this.disabled=true">Sign Up</button>
|
|
@endphp |