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.
32 lines
1.4 KiB
32 lines
1.4 KiB
10 years ago
|
<div class="username_edit_modal_wrap" my-modal-position>
|
||
|
|
||
|
<a class="modal-close-button" ng-click="$dismiss()"><i></i></a>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
|
||
|
<form class="modal_simple_form" ng-submit="updateUsername()">
|
||
|
|
||
|
<h4 my-i18n="username_edit_modal_title"></h4>
|
||
|
|
||
|
<div class="form-group import_modal_field_wrap" ng-class="{'has-error': error.field == 'username', 'has-feedback': error.field == 'username', 'has-success': error.field == 'username'}">
|
||
|
<label class="control-label" ng-bind="error.feedback"></label>
|
||
|
<input class="form-control input-sm" my-focused type="text" placeholder="{{'username_edit_placeholder' | i18n}}" ng-model="profile.username" name="username"/>
|
||
|
<span class="glyphicon glyphicon-remove form-control-feedback"></span>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group import_modal_field_wrap" ng-class="{'has-error': error.field == 'username'}">
|
||
|
</div>
|
||
|
|
||
|
<div class="modal_simple_form_description" my-i18n="username_edit_description_md"></div>
|
||
|
|
||
|
</form>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
<a class="btn btn-link" ng-click="$dismiss()" my-i18n="modal_cancel"></a>
|
||
|
<button class="btn btn-primary" ng-class="{disabled: profile.updating}" ng-click="updateUsername()" ng-bind="profile.updating ? 'username_edit_submit_active' : 'username_edit_submit' | i18n" ng-disabled="profile.updating"></button>
|
||
|
</div>
|
||
|
|
||
|
</div>
|