woodpecker/server/app/views/account.html

41 lines
1 KiB
HTML
Raw Normal View History

2014-07-09 07:46:15 +00:00
<article id="accountpage">
<nav>
<a href="/"><span class="fa fa-th"></span></a>
<a href="/account/profile">my account</a>
</nav>
<section class="pure-g profile">
<div class="pure-u-1-6">
<div>
<a href="https://gravatar.com/" target="_blank">
2014-07-10 05:24:06 +00:00
<img ng-src="{{ account.gravatar | gravatar }}" />
2014-07-09 07:46:15 +00:00
</a>
</div>
</div>
<div class="pure-u-5-6">
<div>
2014-07-10 05:24:06 +00:00
<h4>{{ account.login }}</h4>
<span class="fullname">{{ account.name }}</span>
<span class="email">{{ account.email }}</span>
2014-07-09 07:46:15 +00:00
</div>
<!-- button to toggle HTML5 desktop notifications for build events -->
<div ng-if="notifications.supported && !notifications.granted" class="notifications">
<button ng-click="enableNotifications()" class="pure-button">Enable Notifications</button>
</div>
</div>
</section>
<section class="pure-g token">
<div class="pure-u-1-6">
<div>
<i class="fa fa-key"></i> api key
</div>
</div>
<div class="pure-u-5-6">
<div>
2014-07-10 05:24:06 +00:00
{{ account.token }}
2014-07-09 07:46:15 +00:00
</div>
</div>
</section>
</article>