Home arrow Documentation arrow Customization arrow Custom log-in screen
Home
FAQ
Documentation
Forums
License Key
Custom log-in screen Print
You may create your own custom log-in screen by creating your own file in Thyme's customize foloder called login.php.

You may use the code below as a template:


<?php
   
   
# LOGIN FAILED MESSAGE
   
if($_GET['msg']) echo("<h3>{$_GET['msg']}</h3>\n");

?>
<form method="POST" action="index.php">

Username: <input type="text" name="userid"><br />
Password: <input type="password" name="pass"><br />

<input type="submit" value="Log In">

</form>



Customize the surrounding HTML any way you want!