2019-08-12 16:43:20 +02:00
|
|
|
<div id="api_key_modal" class="modal modal-bg hide fade" tabindex="-1" role="dialog"
|
|
|
|
aria-labelledby="api_key_modal_label" aria-hidden="true">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
<h3 class="inline-block" id="api_key_modal_label">{{t "Show API key" }}</h3>
|
|
|
|
<span class="alert-notification" id="api_key_status"></span>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div id="password_confirmation">
|
|
|
|
<form id="api_key_form">
|
|
|
|
<p>{{t "Please re-enter your password to confirm your identity." }}
|
2020-05-26 05:15:21 +02:00
|
|
|
<a href="/accounts/password/reset/" target="_blank" rel="noopener noreferrer">
|
|
|
|
{{t "Never had one? Forgotten it?" }}
|
|
|
|
</a>
|
|
|
|
</p>
|
2021-04-05 09:53:15 +02:00
|
|
|
<div class="control-group password-div">
|
2019-08-12 16:43:20 +02:00
|
|
|
<label for="password" class="control-label">{{t "Current password" }}</label>
|
|
|
|
<input type="password" autocomplete="off" name="password" id="get_api_key_password" value="" />
|
2021-04-20 16:49:39 +02:00
|
|
|
<i class="fa fa-eye-slash password_visibility_toggle tippy-zulip-tooltip" role="button"></i>
|
2019-08-12 16:43:20 +02:00
|
|
|
</div>
|
|
|
|
<button type="submit" name="view_api_key" id="get_api_key_button" class="button sea-green">
|
|
|
|
{{t 'Get API key' }}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div id="show_api_key">
|
|
|
|
<p>{{t "Your API key:" }}</p>
|
|
|
|
<p><b><span id="api_key_value"></span></b></p>
|
|
|
|
<div id="api_key_buttons">
|
|
|
|
<button type="submit" class="button white rounded regenerate_api_key">
|
|
|
|
{{t "Generate new API key" }}
|
|
|
|
</button>
|
|
|
|
<a id="download_zuliprc" download="{{zuliprc}}" class="button sea-green">
|
|
|
|
{{t "Download .zuliprc" }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div id="user_api_key_error" class="text-error"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|