Skip to content

Commit 2fb58e0

Browse files
committed
Registration: add registration-complete page
Close #147
1 parent 2ce74d8 commit 2fb58e0

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

app/Http/Controllers/Auth/RegisterController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class RegisterController extends Controller
3030
*
3131
* @var string
3232
*/
33-
protected $redirectTo = '/home';
33+
protected $redirectTo = '/registration-complete';
3434

3535
/**
3636
* @var UserManager
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
@extends('layouts.app')
2+
3+
@section('content')
4+
<div class="container">
5+
<h4>
6+
Thank you for registering with Nottingham Hackspace, here is what is going to happen next.
7+
</h4>
8+
<p>
9+
Now you have filled in your details, our membership admins will be notified. They'll give your information a quick check, and if all is well they'll move your membership on to the next stage. If there is an issue, will send you an email with details of what needs correcting.
10+
</p>
11+
<p>
12+
This is the part where you get the Nottingham Hackspace bank details, as well as a unique payment reference for your account.<br>
13+
Use these details to set up a standing order for your membership fee. <br>
14+
The reference must be used exactly as is when setting up your standing for our automated systems to recognise your membership payments.<br>
15+
Membership is pay-what-you-like on a monthly basis, and you can always change the amount you're paying if you find yourself using the space more or less than you first thought.
16+
</p>
17+
<p>
18+
With your standing order set-up, your payment will shows up in our bank account. But this may take 3 to 4 days as payments are not instant between all banks and our automated system only checks at midnight on weekdays.<br>
19+
When it does show, you'll be emailed to say your registration is complete and you're given the door codes. You can then visit the space on the next Wednesday to pick-up your RFID card to get in to the space.<br>
20+
Once that's done, you are free to visit at any time, twenty four hours a day.
21+
</p>
22+
<p>
23+
A few important details: Nottingham Hackspace is incorporated as a non-profit company, registration number 07766826.<br>
24+
Everyone who works on stuff for the hackspace is a volunteer; the hackspace has no staff, just members.<br>
25+
So far, it has also been entirely funded and is self-sustaining through members contributions rather than grants.
26+
</p>
27+
</div>
28+
@endsection

routes/web.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151

5252
// Routes in the following group can only be access once logged-in
5353
Route::middleware(['auth'])->group(function () {
54+
Route::view('registration-complete', 'pages.registrationComplete')->name('registrationComplete');
5455
// Users (show, edit, update) to allow users to update there email if they can't verify it
5556
Route::resource(
5657
'users',

0 commit comments

Comments
 (0)