site/signup.php

52 lines
1.6 KiB
PHP

<?php
$title = "envs.net | signup";
$desc = "envs.net | signup";
include 'header.php';
?>
<body id="body" class="dark-mode">
<div>
<div class="button_back">
<pre class="clean"><strong><a href="/">&lt; back</a></strong></pre>
</div>
<div id="main">
<div class="block">
<pre>
<h1><em>Signup</em></h1>
<h2><em>you wanna join - envs.net?</em></h2>
</pre>
</div>
<pre>
fill out this form and i'll get back to you with your account informations.
</pre>
<?php include 'signup-mailer.php'; ?>
<pre><form method="post"><label>desired username:
<input class="form-control" name="username" value="<?=$_REQUEST["username"] ?? ""?>" type="text" maxlength="32" style="width: 300px;"></label>
<label>e-mail for account informations:
<input class="form-control" name="email" value="<?=$_REQUEST["email"] ?? ""?>" type="text" style="width: 300px;"></label>
<label>what interests you about envs.net?
<textarea class="form-control" name="message" cols="80" rows="8"><?=$_REQUEST["message"] ?? ""?></textarea></label>
<label>ssh public key:
<textarea class="form-control" name="sshkey" cols="80" rows="8"><?=$_REQUEST["sshkey"] ?? ""?></textarea></label>
if you don't have a key, don't worry! check out our <a href="https://envs.net/help/help/#ssh" target="blank">help page</a>
to ssh keys and make sure that you only put your pubkey here.
signing up implies that you agree to abide by our <a href="/coc/" target="blank">code of conduct</a>
no drama. be respectful. have fun. we're all trying, and we're all in this together :)
<input class="form-control" type="submit" value="submit">
</form>
</pre>
</div>
<?php include 'footer.php'; ?>