mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
93 lines
3.9 KiB
Cheetah
93 lines
3.9 KiB
Cheetah
|
{{- /*
|
||
|
// GoToSocial
|
||
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
||
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
//
|
||
|
// This program is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU Affero General Public License as published by
|
||
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
// (at your option) any later version.
|
||
|
//
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU Affero General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Affero General Public License
|
||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/ -}}
|
||
|
|
||
|
{{- with . }}
|
||
|
<main>
|
||
|
<section class="with-form" aria-labelledby="sign-up">
|
||
|
<h2 id="sign-up">Sign up for an account on {{ .instance.Title -}}</h2>
|
||
|
<form action="/signup" method="POST">
|
||
|
<div class="labelinput">
|
||
|
<label for="email">Email</label>
|
||
|
<input
|
||
|
id="email"
|
||
|
type="email"
|
||
|
name="email"
|
||
|
required
|
||
|
placeholder="Email address"
|
||
|
>
|
||
|
</div>
|
||
|
<div class="labelinput">
|
||
|
<label for="password">Password</label>
|
||
|
<input
|
||
|
id="password"
|
||
|
type="password"
|
||
|
name="password"
|
||
|
required
|
||
|
placeholder="Please enter your desired password"
|
||
|
>
|
||
|
</div>
|
||
|
<div class="labelinput">
|
||
|
<label for="username">
|
||
|
Username (lowercase a-z, numbers, and underscores; max 64 characters).<br/>
|
||
|
<small>Your username will be part of your fediverse handle, and cannot be changed later, so choose thoughtfully!</small>
|
||
|
</label>
|
||
|
<input
|
||
|
id="username"
|
||
|
type="text"
|
||
|
name="username"
|
||
|
required
|
||
|
placeholder="Please enter your desired username"
|
||
|
pattern="^[a-z0-9_]{1,64}$"
|
||
|
title="lowercase a-z, numbers, and underscores; max 64 characters"
|
||
|
>
|
||
|
</div>
|
||
|
{{- if .reasonRequired }}
|
||
|
<div class="labelinput">
|
||
|
<label for="reason">
|
||
|
Reason you want to join {{ .instance.Title }} (40-500 characters).<br/>
|
||
|
<small>The admin(s) will use this text to decide whether or not to approve your sign-up.</small>
|
||
|
</label>
|
||
|
<textarea
|
||
|
id="reason"
|
||
|
name="reason"
|
||
|
required
|
||
|
placeholder="Enter a few sentences about why you want to join this instance. If you know someone on the instance already, you may want to mention them here. You might want to link to any other accounts you have elsewhere too."
|
||
|
rows="8"
|
||
|
minlength="40"
|
||
|
maxlength="500"
|
||
|
title="40-500 characters"
|
||
|
></textarea>
|
||
|
</div>
|
||
|
{{- end }}
|
||
|
<div class="checkbox">
|
||
|
<label for="agreement">I have read and accept the <a href="/about#terms">terms and conditions</a> of {{ .instance.Title }}, and I agree to abide by the <a href="/about#rules">instance rules</a>.</label>
|
||
|
<input
|
||
|
id="agreement"
|
||
|
type="checkbox"
|
||
|
name="agreement"
|
||
|
required
|
||
|
value="true"
|
||
|
>
|
||
|
</div>
|
||
|
<input type="hidden" name="locale" value="en">
|
||
|
<button type="submit" class="btn btn-success">Submit</button>
|
||
|
</form>
|
||
|
</section>
|
||
|
</main>
|
||
|
{{- end }}
|