lars
0aa1f9f74b
WebInterfaceDataset replaces CryptoBoxWebserverSettings WebInterfaceSites replaces CryptoBoxWebserverSites input validation rewritten clearsiler macro 'print_form_header' now expects the 'action' as a parameter
32 lines
1.4 KiB
C#
32 lines
1.4 KiB
C#
<?cs # $Id$ ?>
|
|
|
|
<h1><?cs var:html_escape(Lang.Title.Init) ?></h1>
|
|
|
|
<div class="init">
|
|
<?cs call:print_form_header("init_do") ?>
|
|
|
|
<p class="note"><?cs var:html_escape(Lang.Text.InitWarning) ?></p>
|
|
<p><label for="confirm"><?cs var:html_escape(Lang.Text.ConfirmInitHint) ?><br/>
|
|
<span class="note" id="confirmtext"><?cs var:html_escape(Lang.Text.ConfirmInit)
|
|
?></span></label><br/>
|
|
<input type="text" id="confirm" name="confirm" size="30" maxlength="50" /></p>
|
|
<?cs if:Data.Init.isCrypto ?>
|
|
<p><label for="crypto_password"><?cs var:html_escape(Lang.Text.EnterNewCryptoPassword) ?></label> <input type="password" id="crypto_password" name="crypto_password" /></p>
|
|
<p><label for="crypto_password2"><?cs var:html_escape(Lang.Text.EnterSameCryptoPassword) ?></label> <input type="password" id="crypto_password2" name="crypto_password2" /></p>
|
|
<input type="hidden" name="encryption" value="1" />
|
|
<?cs /if ?>
|
|
<input type="hidden" name="device" value="<?cs var:Data.CurrentDisk.device ?>" />
|
|
<button type="submit"><?cs var:html_escape(Lang.Button.DoInit) ?></button>
|
|
</form>
|
|
</div>
|
|
|
|
<hr/>
|
|
|
|
<!-- TODO: maybe place here some kind of initialization information
|
|
this should be open for different kinds of init methods (live-cd, ???)
|
|
<div class="partition_info">
|
|
<h2><?cs var:html_escape(Lang.Text.PartitionInfo) ?></h2>
|
|
<p><?cs var:Data.PartitionInfo ?></p>
|
|
</div>
|
|
|
|
-->
|