mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 08:51:01 +00:00
28 lines
No EOL
956 B
HTML
28 lines
No EOL
956 B
HTML
<!--
|
|
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 ; }
|
|
</style>
|
|
|
|
<article id="loginpage">
|
|
<div class="pure-g">
|
|
<div class="pure-u-1" ng-if="state == 1 && remotes.length != 0" ng-repeat="remote in remotes">
|
|
<a ng-href="/api/auth/{{ remote.type }}" target="_self" ng-if="remote.type != 'gitlab.com' ">
|
|
<i class="fa {{ remote.type | remoteIcon }}"></i> {{ remote.type | remoteName }}
|
|
</a>
|
|
<a ng-href="/gitlab" ng-if="remote.type == 'gitlab.com' ">
|
|
<i class="fa {{ remote.type | remoteIcon }}"></i> {{ remote.type | remoteName }}
|
|
</a>
|
|
</div>
|
|
|
|
<div class="pure-u-1" ng-if="state == 1 && remotes.length == 0">
|
|
<a href="http://drone.readthedocs.org/en/latest/setup.html" target="_blank">
|
|
<i class="fa fa-rocket"></i> Read the Setup Guide
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</article> |