blob: b82345110faf609786a06f59b81e95fe6bf3a737 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
@extends('layouts.master')
@section('master-content')
@if(Auth::check())
@include('shared.already_logged_in')
@else
@include('shared.messages')
<form method="post">
<div class="form-group">
<label for="create-user-email">Email address (private)</label>
<input type="email" class="form-control" id="create-user-email" placeholder="Email" name="email" value="{{{ $form['email'] }}}" aria-describedby="create-user-email-help"/>
<span id="create-user-email-help" class="help-block">You will not receive any automated email from us, but we like to have some way of contacting you available. Your email address will not be shared with third parties, and will not be visible to users of the website.</span>
</div>
<div class="form-group">
<label for="create-user-name">Username</label>
<input type="text" class="form-control" id="create-user-name" placeholder="Username" name="name" value="{{{ $form['name'] }}}" aria-describedby="create-user-name-help"/>
<span id="create-user-name-help" class="help-block">Your name as shown on the site.</span>
</div>
<div class="form-group">
<label for="create-user-pw1">Password</label>
<input type="password" class="form-control" id="create-user-pw1" placeholder="Password" name="password"/>
</div>
<div class="form-group">
<input type="password" class="form-control" id="create-user-pw2" placeholder="Password (confirmation)" name="password_confirmation"/>
</div>
<button type="submit" class="btn btn-primary">Create account</button>
</form>
@endif
@endsection
|