1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-02 14:24:10 +01:00
OwncloudContactsOfficial/templates/importdialog.html

20 lines
886 B
HTML
Raw Normal View History

<div id="contacts_import_dialog">
<div class="import-select">
<p class="bold" style="text-align:center;">{selectText}</p>
<select style="width:100%;" id="import_into" name="addressbooks">
<option value="{id}" data-backend="{backend}" data-permissions="{permissions}">{displayname}</option>
<option value="-1">{defaultText}</option>
</select>
<div id="newaddressbookform" style="display: none;">
2014-03-24 21:24:03 +01:00
<input type="text" style="width: 97%;" placeholder="<?php p($l->t('Name of new addressbook')); ?>" id="newaddressbook" name="newaddressbook">
</div>
</div>
<div class="import-status hidden">
<label id="import-status-text"></label>
<div id="import-status-progress"></div>
<div id="import_done" style="display: none;">
<p style="text-align:center;"></p>
2014-03-24 21:24:03 +01:00
<input type="button" value="<?php p($l->t('Close')); ?>" id="import_done_button">
</div>
</div>
</div>