2019-09-14 16:58:11 +00:00
< ? php
2019-09-14 18:29:05 +00:00
$title = " sign up for the tilde.club! " ;
include __DIR__ . " /../header.php " ;
2021-09-12 21:24:57 +00:00
function esc ( $v ) {
return isset ( $_REQUEST [ $v ]) ? htmlspecialchars ( $_REQUEST [ $v ]) : " " ;
}
2019-09-14 18:29:05 +00:00
?>
2020-05-07 05:44:10 +00:00
< h1 id = " fancyboi " > sign up to join tilde . club </ h1 >
2020-05-06 07:52:26 +00:00
< div class = " grid " >
< div class = " row " >
< div class = " col " >
2019-09-14 18:29:05 +00:00
< p > we 're excited you' re here ! let ' s get you signed up !</ p >
< p > fill out this form and we ' ll get back to you with account info </ p >
2024-01-07 20:25:13 +00:00
< strong ></ b >< p > ( GMail currently not accepting our emails . Add root @ tilde . club to whitelist ) </ p ></ strong >
2019-09-14 18:29:05 +00:00
< table >
< tr >
< td >
< form method = " post " >
< ? php include 'signup-handler.php' ; ?>
< div >
< p > your desired username ( numbers and lowercase letters only , no spaces ) </ p >
2021-09-12 21:24:57 +00:00
< input class = " form-control " name = " username " value = " <?=esc( " username " )?> " type = " text " required >
2019-09-14 18:29:05 +00:00
</ div >
< div >
2024-01-07 20:24:18 +00:00
< p > email to contact you with account info </ p >
2021-09-12 21:24:57 +00:00
< input class = " form-control " name = " email " value = " <?=esc( " email " )?> " type = " text " required >
2019-09-14 18:29:05 +00:00
</ div >
< div >
< p > what interests you about tilde . club ? we want to make sure you ' re a real human being : ) </ p >
2021-09-12 21:24:57 +00:00
< textarea required class = " form-control " name = " interest " id = " " cols = " 40 " rows = " 7 " >< ? = esc ( " interest " ) ?> </textarea>
2019-09-14 18:29:05 +00:00
</ div >
< div >
< p > SSH public key </ p >
2021-09-12 21:24:57 +00:00
< textarea required class = " form-control " name = " sshkey " id = " " cols = " 40 " rows = " 10 " >< ? = esc ( " sshkey " ) ?> </textarea>
2019-09-14 18:29:05 +00:00
< p > if you don 't have a key, don' t worry ! < a href = " https://tilde.club/wiki/ssh.html " > check out our guide to ssh keys </ a > and make sure that you only put your pubkey here </ p >
</ div >
< p >
2019-09-20 12:48:30 +00:00
< em > signing up implies that you agree to abide by < a href = " /wiki/code-of-conduct.html " > our code of conduct </ a ></ em >
2019-09-14 18:29:05 +00:00
< br >
no drama . be respectful . have fun . we 're all trying, and we' re all in this together : )
</ p >
2024-01-05 18:29:57 +00:00
< p > you must be at least 13 years or older to sign up and use tilde . club .</ p >
2019-09-14 18:29:05 +00:00
< button class = " btn btn-primary " type = " submit " > submit </ button >
</ form >
</ td >
</ tr >
</ table >
2020-05-06 07:52:26 +00:00
</ div >
</ div >
2019-09-14 18:29:05 +00:00
< ? php include __DIR__ . " /../footer.php " ;