aboutsummaryrefslogtreecommitdiff
path: root/resources/views/user/create.blade.php
diff options
context:
space:
mode:
authorCamil Staps2019-12-30 16:57:13 +0100
committerCamil Staps2020-01-03 19:06:02 +0100
commitad10a6467f76822b9289832eeb0d0ac2038b32d1 (patch)
tree1d78251ad49be1a744dc4573a1b3cf54e295e3a4 /resources/views/user/create.blade.php
parentClarify incorrect parsing message when input is short (diff)
Strip down for simple app for Greek verb λύω
Diffstat (limited to 'resources/views/user/create.blade.php')
-rw-r--r--resources/views/user/create.blade.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/resources/views/user/create.blade.php b/resources/views/user/create.blade.php
deleted file mode 100644
index b823451..0000000
--- a/resources/views/user/create.blade.php
+++ /dev/null
@@ -1,32 +0,0 @@
-@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