mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-07 11:02:17 +09:00
51 lines
1.9 KiB
HTML
51 lines
1.9 KiB
HTML
<include target="header.html" />
|
|
<form id="body" ruleset="install" method="post" action="./">
|
|
<include target="progress_menu.html" />
|
|
<div id="content">
|
|
<h2>{$lang->install_progress_menu['adminInfo']}</h2>
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<input type="hidden" name="act" value="procInstall" />
|
|
<div class="x_control-group">
|
|
<label for="aMail" class="x_control-label">{$lang->email_address}</label>
|
|
<div class="x_controls">
|
|
<input name="email_address" type="email" id="aMail" class="focus" required />
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label for="aPw1" class="x_control-label">{$lang->password1}</label>
|
|
<div class="x_controls">
|
|
<input name="password" type="password" id="aPw1" required />
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label for="aPw2" class="x_control-label">{$lang->password2}</label>
|
|
<div class="x_controls">
|
|
<input name="password2" type="password" id="aPw2" required />
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label for="aNick" class="x_control-label">{$lang->nick_name}</label>
|
|
<div class="x_controls">
|
|
<input name="nick_name" type="text" id="aNick" required value="admin" />
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label for="aId" class="x_control-label">{$lang->user_id}</label>
|
|
<div class="x_controls">
|
|
<input name="user_id" type="text" id="aId" required value="admin" />
|
|
</div>
|
|
</div>
|
|
<p class="install_help">{$lang->install_notandum}</p>
|
|
</div>
|
|
<div id="buttons">
|
|
<div class="align-left">
|
|
<a href="{getUrl('', 'act','dispInstallConfigForm')}" class="button grey">« {$lang->cmd_back}</a>
|
|
</div>
|
|
<div class="align-right">
|
|
<button type="submit" id="task-done" value="">{$lang->cmd_complete} »</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<include target="footer.html" />
|