initial import for Open Source 🎉

This commit is contained in:
Jimmy Zelinskie 2019-11-12 11:09:47 -05:00
parent 1898c361f3
commit 9c0dd3b722
2048 changed files with 218743 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<div class="cor-container">
<div ng-show="!user.anonymous && user.verified">
<h3>Welcome <b>{{ user.username }}</b>. Your account is fully activated!</h3>
<div style="margin-top: 20px;">
<a class="btn btn-lg btn-primary" href="/repository/">Browse all repositories</a>
</div>
</div>
<div ng-show="!user.anonymous && !user.verified">
<h3>Welcome <b>{{ user.username }}</b>. Your account is pending email confirmation.</h3>
<p>Please check your inbox (and potentially your spam folder) for an email from <a href="mailto:support@quay.io">support@quay.io</a></p>
</div>
<div ng-show="user.anonymous">
<h3>Docker sent me here. What do I need to do?</h3>
<p>
<a href="/signin">Sign In</a> to check the activation status of your account. If you have already activated
your account previously, then you do not need to do anything further.
</p>
</div>
</div>