initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<h2>Welcome!</h2>
<p>
Please login below.
</p>
<?php echo form_tag('default/login', 'method=post') ?>
<fieldset class='login'>
<legend>Login</legend>
<div class='field'>
<label>Username</label>
<?php echo input_tag('username') ?>
</div>
<div class='field'>
<label>Password</label>
<?php echo input_password_tag('password') ?>
</div>
<div class='field field-submit'>
<label>&nbsp;</label>
<?php echo submit_tag('Login') ?>
</div>
</fieldset>
</form>