2020-06-28 19:32:30 +02:00
|
|
|
@js(js/login/google_signup.js)
|
2020-06-27 00:23:57 +02:00
|
|
|
|
2020-06-28 19:32:30 +02:00
|
|
|
@extends(templates/layout_normal)
|
2020-06-27 00:23:57 +02:00
|
|
|
|
2020-06-28 19:32:30 +02:00
|
|
|
@section(main)
|
2020-06-21 01:33:33 +02:00
|
|
|
<h2>Sign up</h2>
|
|
|
|
<div class="box">
|
2023-09-24 00:47:44 +02:00
|
|
|
<form id="googleSignupForm" action="/signup" method="post" data-redirect-on-success="/signup/success">
|
|
|
|
<p class="justify">Please confirm your sign up request. Your account will be linked to your Google account.</p>
|
2022-05-26 15:55:45 +02:00
|
|
|
<input type="email" class="text big fullWidth marginTop" name="email" placeholder="Email address" value="<?= $email ?>" disabled>
|
2023-09-24 00:47:44 +02:00
|
|
|
<input type="username" class="text big fullWidth marginTop" name="username" placeholder="Username">
|
|
|
|
<p id="googleSignupFormError" class="formError justify marginTop"></p>
|
2020-06-21 15:29:02 +02:00
|
|
|
<div class="right">
|
2023-09-24 00:47:44 +02:00
|
|
|
<button class="marginTop marginRight" type="submit">Sign up</button><!--
|
2020-06-21 15:29:02 +02:00
|
|
|
--><button id="cancelGoogleSignupButton" class="gray marginTop" type="button">Cancel</button>
|
2020-06-21 01:33:33 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2020-06-27 00:23:57 +02:00
|
|
|
@endsection
|