lars
c35e204a7b
changed warning/success message system to a new style unified design of "hints" in form interfaces fixed small bugs in "network" and "partition" plugin interfaces "partition" and "disks" plugins: show blockdevice size during device selection german translation for "disks" plugin added
18 lines
797 B
C#
18 lines
797 B
C#
<h2><?cs var:html_escape(Lang.Plugins.volume_mount.Title.Mount) ?></h2>
|
|
|
|
<?cs call:handle_messages() ?>
|
|
|
|
<p><?cs call:print_form_header("mount", "plugins/volume_mount") ?>
|
|
<input type="hidden" name="device" value="<?cs var:html_escape(Data.CurrentDisk.device) ?>" />
|
|
<?cs if:Data.CurrentDisk.encryption ?>
|
|
<input type="hidden" name="action" value="mount_luks" />
|
|
<?cs else ?>
|
|
<input type="hidden" name="action" value="mount_plain" />
|
|
<?cs /if ?>
|
|
<?cs if:Data.CurrentDisk.encryption ?>
|
|
<label for="pw"><?cs var:html_escape(Lang.Text.EnterCurrentPassword) ?>: </label>
|
|
<input type="password" tabindex="1" id="pw" name="pw" size="20" maxlength="60" />
|
|
<?cs /if ?>
|
|
<button type="submit" tabindex="2"><?cs var:html_escape(Lang.Plugins.volume_mount.Button.Mount) ?></button>
|
|
</form></p>
|
|
|