peryoudow/template/login.php

12 lines
480 B
PHP

<?php $this->layout('template') ?>
<h3>Login</h3>
<form method="post" class="w3-container">
<label class="w3-text-teal">Login</label>
<input type="text" name="login" class="w3-input w3-border w3-round"/>
<label class="w3-text-teal">Password</label>
<input type="password" name="password" class="w3-input w3-border w3-round"/>
<input type="hidden" name="page" value="login"/>
<input type="submit" value="Login" class="w3-button w3-teal w3-round"/>
</form>