mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-10 04:02:28 +01:00
16 lines
682 B
PHP
16 lines
682 B
PHP
<?php
|
|
/*
|
|
* Registration Page
|
|
*/
|
|
require_once('lib-core.php');
|
|
require_once('layout-headermd.php');
|
|
|
|
echo "<h2 style='color:green'>Register</h2>";
|
|
echo "<form action='handle-register.php' method='POST'>"
|
|
. "<br>Username: <input type='text' name='username' class='form-control' placeholder='Username' />"
|
|
. "<br>Password: <input type='password' name='password' class='form-control' placeholder='Password' />"
|
|
. "<br>Email: <input type='email' name='email' class='form-control' placeholder='Email' />"
|
|
|
|
. "<br><input type=\"submit\" name=\"polrsubmit\" class=\"btn btn-default btn-warning\" value=\"Register\"/>";
|
|
|
|
require_once('layout-footermd.php'); |