woodpecker/server/app/views/login.html

29 lines
938 B
HTML
Raw Normal View History

2014-09-28 03:36:11 +00:00
<!--
2014-07-14 03:24:03 +00:00
minor modifications to the style that only apply to this view
-->
<style>
#container { padding-top: 155px; }
#header { height: 150px; }
#header .user { display:none; }
#header .brand { margin-top:55px ; }
2014-07-14 03:24:03 +00:00
</style>
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">
2015-01-23 18:51:37 +00:00
<a ng-href="/api/auth/{{ remote.type }}" target="_self" ng-if="remote.type != 'gogs' ">
2014-07-13 02:01:58 +00:00
<i class="fa {{ remote.type | remoteIcon }}"></i> {{ remote.type | remoteName }}
2014-07-09 07:46:15 +00:00
</a>
2014-09-28 03:36:11 +00:00
<a ng-href="/gogs" ng-if="remote.type == 'gogs' ">
<i class="fa {{ remote.type | remoteIcon }}"></i> {{ remote.type | remoteName }}
</a>
2014-07-09 07:46:15 +00:00
</div>
2014-07-13 02:01:58 +00:00
<div class="pure-u-1" ng-if="state == 1 && remotes.length == 0">
2014-11-13 15:54:54 +00:00
<a href="http://readme.drone.io/setup/config/settings/" target="_blank">
<i class="fa fa-rocket"></i> Read the Setup Guide
2014-07-09 07:46:15 +00:00
</a>
</div>
</div>
2014-09-28 03:36:11 +00:00
</article>