fix line-endings in signup/index.php

This commit is contained in:
Ben Harris 2020-10-30 16:25:17 -04:00
parent cc98ac895f
commit 06c59560e8
1 changed files with 54 additions and 54 deletions

View File

@ -1,54 +1,54 @@
<?php <?php
include __DIR__.'/../header.php'; include __DIR__.'/../header.php';
?> ?>
<div class="container" id="app"> <div class="container" id="app">
<h1> <h1>
tilde.team signup tilde.team signup
<div class="pull-right"> <div class="pull-right">
<small><a href="/">&lt; back</a></small> <small><a href="/">&lt; back</a></small>
</div> </div>
</h1> </h1>
<h3>so you wanna join the tilde.team?</h3> <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> <p>hi there. fill out this form and i'll get back to you with your account info.</p>
<hr> <hr>
<form method="post"> <form method="post">
<?php include 'signup-handler.php'; ?> <?php include 'signup-handler.php'; ?>
<div class="form-group"> <div class="form-group">
<label>your desired username (numbers and lowercase letters only, no spaces)</label> <label>your desired username (numbers and lowercase letters only, no spaces)</label>
<input class="form-control" name="username" value="<?=$_REQUEST["username"] ?? ""?>" type="text" required> <input class="form-control" name="username" value="<?=$_REQUEST["username"] ?? ""?>" type="text" required>
</div> </div>
<div class="form-group"> <div class="form-group">
<label>email to contact you with account info</label> <label>email to contact you with account info</label>
<input class="form-control" name="email" value="<?=$_REQUEST["email"] ?? ""?>" type="text" required> <input class="form-control" name="email" value="<?=$_REQUEST["email"] ?? ""?>" type="text" required>
</div> </div>
<div class="form-group"> <div class="form-group">
<label>what interests you about tilde.team?</label> <label>what interests you about tilde.team?</label>
<textarea class="form-control" name="interest" id="" cols="30" rows="10"><?=$_REQUEST["interest"] ?? ""?></textarea> <textarea class="form-control" name="interest" id="" cols="30" rows="10"><?=$_REQUEST["interest"] ?? ""?></textarea>
</div> </div>
<div class="form-group"> <div class="form-group">
<label>SSH public key</label> <label>SSH public key</label>
<textarea required class="form-control" name="sshkey" id="" cols="30" rows="10"><?=$_REQUEST["sshkey"] ?? ""?></textarea> <textarea required class="form-control" name="sshkey" id="" cols="30" rows="10"><?=$_REQUEST["sshkey"] ?? ""?></textarea>
<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> <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>
</div> </div>
<p> <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> <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> </p>
<p>you must be at least 13 years or older to sign up and use tilde.team.</p> <p>you must be at least 13 years or older to sign up and use tilde.team.</p>
<button class="btn btn-primary" type="submit">submit</button> <button class="btn btn-primary" type="submit">submit</button>
</form> </form>
<br> <br>
</div> </div>
<?php include __DIR__.'/../footer.php'; <?php include __DIR__.'/../footer.php';