woodpecker/server/app/views/login.html

15 lines
477 B
HTML
Raw Normal View History

2014-07-09 07:46:15 +00:00
<article id="loginpage">
<div class="pure-g">
2014-07-13 02:01:58 +00:00
<div class="pure-u-1" ng-if="state == 1 && remotes.length != 0" ng-repeat="remote in remotes">
<a href="/login/{{ remote.type }}" target="_self">
<i class="fa {{ remote.type | remoteIcon }}"></i> {{ remote.type | remoteName }}
2014-07-09 07:46:15 +00:00
</a>
</div>
2014-07-13 02:01:58 +00:00
<div class="pure-u-1" ng-if="state == 1 && remotes.length == 0">
<a href="/setup">
<i class="fa fa-rocket"></i> Launch Setup Wizard
2014-07-09 07:46:15 +00:00
</a>
</div>
</div>
</article>