summaryrefslogtreecommitdiff
path: root/skins/elastic/templates/key_import.html
blob: da11b360dc21eb93e95368a66c3bfa0dc79a1ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<roundcube:include file="includes/layout.html" />
<roundcube:include file="includes/menu.html" />
<roundcube:include file="includes/settings-menu.html" />

<h1 class="voice"><roundcube:label name="settings" /> : <roundcube:label name="inbox_settings.key_import" /></h1>

<!-- keys list -->
<div id="layout-content" role="main">
	<h2 id="aria-label-toolbar" class="voice"><roundcube:label name="arialabeltoolbar" /></h2>
	<div class="header">
		<a class="button icon back-list-button" href="#back"><span class="inner"><roundcube:label name="back" /></span></a>
		<span class="header-title"></span>
	</div>
    <div class="formcontainer">
        <h1 class="voice"><roundcube:label name="inbox_settings.key_import" /></h1>
        <roundcube:form name="importform" method="post" id="import-key" class="formcontent">
            <fieldset>
                <legend><roundcube:label name="inbox_settings.key_import" /></legend>
                <table class="propform">
                    <tbody>
                        <tr class="form-group row">
                            <td class="col-sm-8" colspan="2" style="width: 100%;">
                                <label class="col-form-label" for="rcmfd_key_data"><roundcube:label name="inbox_settings.paste_key_data" /></label>
                            </td>
                        </tr>
                        <tr class="form-group row">
                            <td class="col-sm-8" colspan="2" style="width: 100%;">
                                <textarea id="rcmfd_key_data" rows="10" name="key_data" class="form-control"></textarea>
                            </td>
                        </tr>
                        <tr class="form-group row">
                            <td class="col-sm-2">
                                <label class="col-form-label" for="rcmfd_key_comment"><roundcube:label name="inbox_settings.comment" /></label>
                            </td>
                            <td colspan="1" class="col-sm-9 offset-1">
                                <input id="rcmfd_key_comment" type="text" name="comment" size="80" value="" class="form-control">
                            </td>
                        </tr>
                    </tbody>
                </table>
            </fieldset>
            <div class="formbuttons">
                <button type="submit" name="import" class="button mainaction submit btn btn-primary"><roundcube:label name="import"></button>
            </div>
        </form>
    </div>
</div>

<roundcube:include file="includes/footer.html" />