forked from googlearchive/cloud-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoauth2_admin.html
More file actions
27 lines (25 loc) · 1 KB
/
Copy pathoauth2_admin.html
File metadata and controls
27 lines (25 loc) · 1 KB
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
<form>
<div class='modal-header'>
<button type='button' class='close' ng-click='close()'>×</button>
<h3>OAuth2 Admin: {{key}}</h3>
</div>
<div>Enter the credentials from <a href="{{url}}" target="_blank">{{url}}</a></div>
<div class='modal-body form-horizontal'>
<div class='control-group'>
<label class='control-label' for='client_id'>Client Id</label>
<div class='controls'>
<input class='span4' type='text' id='client_id' ng-model='client_id' required autofocus>
</div>
</div>
<div class='control-group'>
<label class='control-label' for='client_secret'>Client Secret</label>
<div class='controls'>
<input class='span4' type='text' id='client_secret' ng-model='client_secret' required>
</div>
</div>
</div>
<div class='modal-footer'>
<button type='button' class='btn' ng-click='close()'>Close</button>
<button type='submit' class='btn btn-primary' ng-click='close(client_id, client_secret)'>Save</button>
</div>
</form>