site/signup.php

54 lines
1.9 KiB
PHP
Raw Normal View History

2019-10-12 18:17:09 +00:00
<?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>
2020-01-17 10:32:09 +00:00
<div id="main" style="padding-bottom: 4em;">
2019-10-12 18:17:09 +00:00
<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'; ?>
2020-01-17 10:32:09 +00:00
<form method="post"><label>desired username:<br />
<input class="form-control" name="username" value="<?=$_REQUEST["username"] ?? ""?>" type="text" maxlength="32" style="width: 260px;"></label>
<br /><br />
2020-01-17 12:55:14 +00:00
<label>e-mail for account informations: &nbsp;&nbsp;&nbsp;&nbsp; confirm:<br />
2020-01-17 10:32:09 +00:00
<input class="form-control" name="email" value="<?=$_REQUEST["email"] ?? ""?>" type="text" style="width: 260px;">
<input class="form-control" name="emailconfirm" value="<?=$_REQUEST["emailconfirm"] ?? ""?>" type="text" style="width: 260px;"></label>
<br /><br />
<label>what interests you about envs.net?<br />
<textarea class="form-control" name="interest" rows="8" style="width: 560px;"><?=$_REQUEST["interest"] ?? ""?></textarea></label>
<br /><br />
<label>ssh public key:<br />
<textarea class="form-control" name="sshkey" rows="8" style="width: 560px;"><?=$_REQUEST["sshkey"] ?? ""?></textarea></label>
<pre>
2019-10-30 19:28:01 +00:00
if you don't have a key, don't worry! check out our <a href="https://help.envs.net/help/#ssh" target="blank">help page</a>
2019-10-12 18:17:09 +00:00
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">
</pre>
2020-01-17 10:32:09 +00:00
</form>
2019-10-12 18:17:09 +00:00
</div>
<?php include 'footer.php'; ?>