Files
mallardnet/views/apply.php
2025-11-22 23:57:26 -08:00

66 lines
3.2 KiB
PHP

<html>
<head>
<title><?= $website->title; ?>: <?= $website->slogan; ?></title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<table class="container" align="center">
<tbody>
<?php require("includes/header.php"); ?>
<tr>
<td>
<table class="form-box big-box" align="center" border="1">
<tbody>
<tr>
<th align="left" colspan="2">Sign up application</th>
</tr>
<form action="/apply" method="POST">
<tr>
<td colspan="2">
To register for <b>MallardNet</b>, an application form is required in which our team determines and decides
if you are eligible to have an account before sending you a link that lets you create one. This is to prevent bad actors from
accessing the website. Below is this form you'll fill out to determine your account eligibility.
</td>
</tr>
<tr>
<td class="label-box" align="right">email: </td>
<td><input type="text" name="email" /></td>
</tr>
<tr>
<td class="label-box" valign="top" align="right">Why do you want to join MallardNet? </td>
<td><textarea name="context" rows="10" cols="46"></textarea></td>
</tr>
<tr>
<td class="label-box" valign="top" align="right">From where did you hear about this site?</td>
<td><input type="text" name="from_where" /></td>
</tr>
<tr>
<td class="right-hidden-border"></td>
<td class="small-text">
By submitting this application, you agree that you have read and understood our
<a href="/site_guidelines">Site Use Guidelines</a>.
</td>
</tr>
<tr class="top-hidden-border">
<td class="right-hidden-border"></td>
<td class="submit-pad"><input type="submit" name="submit_form" value="submit" /></td>
</tr>
</form>
</tbody>
</table>
</td>
</tr>
<?php require("includes/footer.php"); ?>
</tbody>
</table>
</body>
</html>