This repository has been archived on 2024-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
peryoudow/template/install.php
2020-01-06 14:23:12 +01:00

18 lines
No EOL
820 B
PHP

<?php $this->layout('template') ?>
<h3>Setup</h3>
<p>
<?php if(!empty($missing)):?>
You must complete <span class="error"><?=$missing?></span> field.
<?php endif ?>
</p>
<form method="post" class="w3-container">
<label class="w3-text-teal">Login</label>
<input class="w3-input w3-border w3-round" type="text" name="createLogin" reuired/>
<label class="w3-text-teal">Password</label>
<input class="w3-input w3-border w3-round" type="password" name="createPassword" requred/>
<label class="w3-text-teal">List of destination path (separe by semicolon)
<textarea name="createPath" class="w3-input w3-border w3-round" ></textarea>
<input type="hidden" name="page" value="install"/>
<input class="w3-button w3-input w3-border w3-round" type="submit" value="Register" />
</form>