Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
11 years ago
|
<div class="import_modal_wrap" my-modal-position>
|
||
|
|
||
|
<div class="modal-header">
|
||
|
<a class="modal-close-link" ng-click="$close()">Close</a>
|
||
|
<h4 class="modal-title">Edit contact</h4>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
|
||
|
<form ng-submit="doImport()">
|
||
|
|
||
|
<div class="form-group import_modal_field_wrap">
|
||
|
<span class="form-control uneditable-input disabled" disabled>{{importContact.phone | phoneNumber}}</span>
|
||
|
</div>
|
||
|
<div class="form-group import_modal_field_wrap">
|
||
|
<input class="form-control" type="text" my-focused placeholder="First name" ng-model="importContact.first_name"/>
|
||
|
</div>
|
||
|
<div class="form-group import_modal_field_wrap">
|
||
|
<input class="form-control" type="text" placeholder="Last name" ng-model="importContact.last_name"/>
|
||
|
</div>
|
||
|
|
||
|
<div class="import_modal_panel clearfix">
|
||
|
|
||
|
<div class="import_modal_actions pull-right">
|
||
|
<a class="btn btn-default" ng-click="$dismiss()"> Cancel </a>
|
||
|
|
||
|
<button class="btn btn-success" type="submit" ng-class="{disabled: progress.enabled}" ng-disabled="progress.enabled">
|
||
|
{{progress.enabled ? 'Saving...' : 'Save'}}
|
||
|
</button>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</form>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|