-
Notifications
You must be signed in to change notification settings - Fork 1
/
create_account.php
70 lines (51 loc) · 1.73 KB
/
create_account.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
session_start();
$error = $_SESSION['errormessage'];
?>
<!DOCTYPE html>
<html>
<?php $thisPage=""; ?>
<head>
<?php include('inc/header.php') ?>
<link rel="shortcut icon" href="http://conference.scipy.org/scipy2013/favicon.ico" />
</head>
<body>
<div id="container">
<?php include('inc/page_headers.php') ?>
<section id="sidebar">
<?php include("inc/sponsors.php") ?>
</section>
<section id="main-content">
<h1>Create Account</h1>
<p>Logins are restricted to SciPy 2013 registered attendees. Your username is the email used to register.</p>
<p>If you wish to create an account prior to registering, or require assistance - please contact us at <a href="mailto:scipy-organizers@scipy.org">scipy-organizers@scipy.org</a>. (This helps us keep spam down!)</p>
<form name="form1" method="post" action="admin/registered_auth.php">
<table width="300" border="0" id="login">
<tr>
<th colspan="2">Registered Login</th>
</tr>
<tr>
<td>User ID:</td>
<td><input name="username" type="text" size=25 maxlength=255 /></td>
</tr>
<tr>
<td>Password:</td>
<td><input name="password" type="password" size=25 maxlength=255 /></td>
</tr>
<tr>
<td> </td>
<td> <input type="submit" name="submit" value="Create" /> </td>
</tr>
<?php if ($error != "") {
echo "<tr><td colspan=\"2\"><div class=\"error\">$error</div></td></tr>";
} ?>
</table>
</form>
</section>
<div style="clear: both;"></div>
<footer id="page_footer">
<?php include('../inc/page_footer.php') ?>
</footer>
</div>
</body>
</html>