Files
cloudron-box/webadmin/views/volumeunmount.html
T
Girish Ramakrishnan 82e9bf79b6 Clean up js directory
Create a directory called views that conatins the controller and
the partials together. These two are tightly tied together anyway.

Can't see any point of grouping things based on programming
patterns (it might make sense to group things based on function
as our code becomes bigger)
2014-06-04 14:21:49 -07:00

29 lines
993 B
HTML

<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="container-fluid">
<form class="form-signin" role="form" ng-submit="submit()">
<div class="row">
<div class="col-sm-12">
<h2 class="form-signin-heading pull-right">Close Volume {{volume.name}}</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<input type="password" class="form-control" ng-model="volume.password" placeholder="Password" required autofocus>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<input class="btn btn-block" ng-click="cancel()" type="button" value="Cancel"/>
</div>
<div class="col-sm-6">
<input class="btn btn-green btn-block" type="submit" ng-disabled="{{disabled}}" value="Close Volume"/>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-3"></div>
</div>