Skip to content

Commit 6301514

Browse files
author
Ilya Radchenko
committed
Fix account config form
1 parent 8172642 commit 6301514

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ build/Release
2525
node_modules
2626

2727
# Webstorm project folder
28-
.idea
28+
.idea
29+
.DS_Store

config/accountConfig.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
<div class="control-group api-url">
22
<label class="control-label" for="password">API url (<a href="https://github.com/gitlabhq/gitlabhq/tree/master/doc/api" target="_blank">?</a>)</label>
3+
<div class="controls">
4+
<input ng-model="config.api_url" placeholder="http://your.gitlab.host/api/vX" type="text">
5+
</div>
36
</div>
4-
<div class="controls">
5-
<input ng-model="config.api_url" placeholder="http://your.gitlab.host/api/vX">
6-
</div>
7+
78
<div class="control-group token">
89
<label class="control-label" for="password">Private token (<a href="https://github.com/gitlabhq/gitlabhq/tree/master/doc/api" target="_blank">?</a>)</label>
10+
<div class="controls">
11+
<input ng-model="config.api_key" placeholder="Private token" type="text">
12+
</div>
913
</div>
10-
<div class="controls">
11-
<input ng-model="config.api_key" placeholder="Private token">
12-
</div>
14+
1315
<div class="actions">
1416
<button class="btn" ng-click="save()">Save</button>
1517
</div>

0 commit comments

Comments
 (0)