2017-08-14 18:41:55 +00:00
< style >
.panel{
box-shadow: none;
border: none;
}
< / style >
< div class = "home-container" >
< div class = "white-well" >
< h1 > Create a new Website< / h1 >
< h3 > Select a Domain< / h3 >
< div class = "input-group" >
2017-08-18 19:41:38 +00:00
< input type = "text" class = "form-control" placeholder = "www" ng-model = "vm.newRecord" ng-change = "vm.setRecord()" / >
< div class = "input-group-btn" >
<!-- Single button -->
< div class = "btn-group" >
< button type = "button" class = "btn btn-default dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" > < span class = "caret" > < / span >
< / button >
< ul class = "dropdown-menu" >
2017-08-21 20:28:58 +00:00
< li ng-repeat = "record in vm.records track by $index" > < button class = "btn btn-link" ng-bind = "record.sub" ng-click = "vm.selectRecord(record)" > www< / button > < / li >
2017-08-18 19:41:38 +00:00
< / ul >
< / div >
< / div >
2017-08-14 18:41:55 +00:00
< span class = "input-group-addon" > .< / span >
2017-08-24 17:02:31 +00:00
< div angucomplete-alt
placeholder="Select a domain"
pause="300"
selected-object="vm.selectedDomain"
local-data="domain"
local-search="localDomainSearch"
title-field="domain"
minlength="0"
input-class="form-control trigger-dropdown"
match-class="highlight">
< / div >
<!-- <input type="text" class="form - control" placeholder="Select a domain" aria - label="Domain Name" ng - model="vm.newDomain" ng - change="vm.setDomain()" /> -->
2017-08-14 18:41:55 +00:00
< div class = "input-group-btn" >
< div class = "btn-group" >
2017-08-24 17:02:31 +00:00
< button type = "button" class = "btn btn-default trigger-dropdown" aria-haspopup = "true" aria-expanded = "false" ng-click = "vm.triggerDropdown()" > < span class = "caret" > < / span >
2017-08-14 18:41:55 +00:00
< / button >
< / div >
2017-08-18 19:41:38 +00:00
< / div >
2017-08-14 18:41:55 +00:00
< / div >
< div class = "panel panel-default" >
< div class = "panel-body" >
2017-08-18 19:41:38 +00:00
<!--
2017-08-14 18:41:55 +00:00
Choose or create a public shared folder < button class = "btn btn-default" > Select Daplie Folder< / button >
2017-08-18 19:41:38 +00:00
< br >
-->
< div class = "input-group" >
2017-08-23 20:36:19 +00:00
< div > < label > Select .zip upload< / label > < input type = "file" class = "js-file-upload this-has-a-special-non-angular-event-handler" / > < / div >
< div ng-if = "vm.isZip" > < label > < input type = "checkbox" ng-model = "vm.unzip" / > Unpack .zip< / label > < / div >
< div ng-if = "vm.unzip" > < label > < input type = "checkbox" ng-model = "vm.stripZip" / > Strip zip directory root< / label > < / div >
<!-- div ng - if="vm.isZip" ><label>Unzip directory</label> <input type="text" ng - model="vm.unzipPath" /></div -->
2017-08-25 23:48:14 +00:00
< div ng-if = "vm.uploadTotal" > < span ng-bind = "vm.uploadPercent" > 99< / span > % | < span ng-bind = "vm.uploadProgress" > 1< / span > MiB / < span ng-bind = "vm.uploadTotal" > 100< / span > MiB< / div >
< div > < label > Web path< / label > < input type = "text" ng-model = "vm.webPath" / > < / div >
2017-08-18 19:41:38 +00:00
< / div >
2017-08-14 18:41:55 +00:00
< / div >
< / div >
2017-08-18 19:41:38 +00:00
<!--
2017-08-14 18:41:55 +00:00
< div class = "panel panel-default" >
< div class = "panel-body" >
Who can edit and upload to this site? < input placeholder = "Type contact name or email address" type = "text" class = "form-control" >
< / div >
< / div >
2017-08-18 19:41:38 +00:00
-->
2017-08-14 18:41:55 +00:00
<!-- <div class="form - group">
< div class = "pull-right" > -->
2017-08-18 19:41:38 +00:00
< button ng-click = "vm.createWebsite()" type = "button" name = "button" class = "btn btn-default" > Create Website< / button >
2017-08-14 18:41:55 +00:00
<!-- </div>
< / div > -->
2017-09-01 20:50:33 +00:00
< div class = "input-group" >
< div > < label > Invite Code< / label > < input type = "text" ng-model = "vm.Shares.inviteToken" / > < / div >
< button ng-click = "vm.Shares.accept()" type = "button" name = "button" class = "btn btn-default" > Accept Invite< / button >
< / div >
2017-08-14 18:41:55 +00:00
< / div >
< div class = "white-well" >
< h1 > Your Websites< / h1 >
< table class = "table" >
< tbody >
2017-08-22 18:37:57 +00:00
< tr ng-repeat = "r in vm.sites" >
2017-08-31 07:42:59 +00:00
< td > < a ng-href = "https://{{r.domain}}" target = "_blank" ng-bind = "r.domain" > example.com< / a >
2017-09-01 20:50:33 +00:00
< a ng-href = "{{r.download}}" target = "_blank" > Download< / a >
2017-08-31 07:42:59 +00:00
<!-- button class="btn btn - link" ng - click="vm.Sites.archive(r)">download</button -->
2017-09-01 20:50:33 +00:00
< button class = "btn btn-link" ng-click = "vm.Sites.remove(r)" > Clear< / button > < / td >
2017-08-31 07:42:59 +00:00
< td >
2017-09-01 20:50:33 +00:00
< input type = "text" ng-model = "r.newPath" placeholder = "/" / >
< button class = "btn btn-default" ng-click = "vm.Sites.contents(r)" > List Files< / button >
< / td >
2017-08-22 18:37:57 +00:00
< td ng-bind = "r.path" > Sites > blogs > blog.jane.smith.net< / td >
< td ng-bind = "r.users" > jane@smith.net, jack@smith.net, friend@gmail.com< / td >
2017-09-01 20:50:33 +00:00
< td >
< input type = "text" ng-model = "r.shareEmail" placeholder = "ex: john@example.com" / >
< input type = "text" ng-model = "r.sharePath" placeholder = "/" / >
< input type = "text" ng-model = "r.shareMode" placeholder = "rwx (read, write, invite)" / >
< button class = "btn btn-default" ng-click = "vm.Shares.invite(r)" > Invite< / button >
< / td >
2017-08-14 18:41:55 +00:00
< / tr >
< / tbody >
< / table >
< / div >
< / div >