harness-drone/server/app/views/account.html
2014-07-09 22:24:06 -07:00

41 lines
No EOL
1 KiB
HTML

<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">
<img ng-src="{{ account.gravatar | gravatar }}" />
</a>
</div>
</div>
<div class="pure-u-5-6">
<div>
<h4>{{ account.login }}</h4>
<span class="fullname">{{ account.name }}</span>
<span class="email">{{ account.email }}</span>
</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>
{{ account.token }}
</div>
</div>
</section>
</article>