-
Notifications
You must be signed in to change notification settings - Fork 872
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
463 additions
and
213 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<div class="modal"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<button type="button" class="close" data-dismiss="modal" ng-click="$hide()" aria-hidden="true">× | ||
</button> | ||
<h3>Drop database {{name}} ? </h3> | ||
</div> | ||
<div class="modal-body edge"> | ||
<form id="signin" name="newDB" class="form-horizontal" novalidate=""> | ||
<fieldset> | ||
<div class="form-group"> | ||
<label class="control-label col-md-2">Server User</label> | ||
|
||
<div class="col-md-10"> | ||
<input id="user" class="form-control" type="text" required ng-model="username" | ||
value=""/> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label class="control-label col-md-2">Password</label> | ||
|
||
<div class="col-md-10"> | ||
<input id="password" type="password" class="form-control" required ng-model="password" | ||
value=""/> | ||
</div> | ||
|
||
</div> | ||
</fieldset> | ||
</form> | ||
<div class="progress progress-striped active" ng-show="creating"> | ||
<div class="bar" style="width: 100%;">Deleting database {{ name }}</div> | ||
</div> | ||
<div class="alert alert-error" ng-show="error"> | ||
<button type="button" class="close" ng-click="error = null">×</button> | ||
{{error}} | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn" ng-click="$hide()">Close</button> | ||
<button class="btn btn-primary" ng-disabled="newDB.$invalid" ng-click="delete()">Drop database | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
Oops, something went wrong.