18 lines
No EOL
820 B
PHP
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>
|