site/signup/index.php

54 lines
2.0 KiB
PHP
Raw Normal View History

2018-04-24 19:06:18 +00:00
<?php
include __DIR__.'/../header.php';
?>
2017-09-13 15:22:06 +00:00
<div class="container" id="app">
<h1>
tilde.team signup
<div class="pull-right">
<small><a href="/">&lt; back</a></small>
</div>
</h1>
<h3>so you wanna join the tilde.team?</h3>
<p>hi there. fill out this form and i'll get back to you with your account info.</p>
<hr>
2018-06-09 03:52:54 +00:00
<form method="post">
2018-06-09 03:17:35 +00:00
<?php include 'signup-handler.php'; ?>
2017-09-13 15:22:06 +00:00
<div class="form-group">
<label>your desired username (numbers and lowercase letters only, no spaces)</label>
<input class="form-control" name="username" value="<?=$_REQUEST["username"] ?? ""?>" type="text" required>
2017-09-13 15:22:06 +00:00
</div>
<div class="form-group">
<label>email to contact you with account info</label>
<input class="form-control" name="email" value="<?=$_REQUEST["email"] ?? ""?>" type="text" required>
2017-09-13 15:22:06 +00:00
</div>
<div class="form-group">
<label>what interests you about tilde.team?</label>
<textarea class="form-control" name="interest" id="" cols="30" rows="10"><?=$_REQUEST["interest"] ?? ""?></textarea>
</div>
<div class="form-group">
2018-06-04 06:18:28 +00:00
<label>SSH public key</label>
<textarea required class="form-control" name="sshkey" id="" cols="30" rows="10"><?=$_REQUEST["sshkey"] ?? ""?></textarea>
2018-06-08 21:34:05 +00:00
<p>if you don't have a key, don't worry! <a href="/wiki/?page=ssh">check out our guide to ssh keys</a> and make sure that you only put your pubkey here</p>
2017-09-13 15:22:06 +00:00
</div>
2018-06-08 21:34:05 +00:00
<p>
<em>signing up implies agreement with our <a href="/wiki/?page=code-of-conduct">code of conduct</a>. please give it a read.</em>
</p>
2017-09-13 15:22:06 +00:00
<button class="btn btn-primary" type="submit">submit</button>
</form>
<br>
</div>
2018-04-24 19:06:18 +00:00
<?php include __DIR__.'/../footer.php';
2017-09-13 15:22:06 +00:00