Plumbing for the contact us page.

This commit is contained in:
yackob03 2013-12-17 17:02:37 -05:00
parent a53106be3b
commit 7c93688e30
5 changed files with 45 additions and 3 deletions

View file

@ -544,6 +544,8 @@ quayApp = angular.module('quay', ['ngRoute', 'restangular', 'angularMoment', 'an
reloadOnSearch: false, controller: UserAdminCtrl}).
when('/guide/', {title: 'Guide', description:'Guide to using private docker repositories on Quay.io', templateUrl: '/static/partials/guide.html',
controller: GuideCtrl}).
when('/contact/', {title: 'Contact Us', description:'Different ways for you to get a hold of us when you need us most.', templateUrl: '/static/partials/contact.html',
controller: ContactCtrl}).
when('/plans/', {title: 'Plans and Pricing', description: 'Plans and pricing for private docker repositories on Quay.io',
templateUrl: '/static/partials/plans.html', controller: PlansCtrl}).
when('/security/', {title: 'Security', description: 'Security features used when transmitting and storing data',

View file

@ -61,6 +61,9 @@ function GuideCtrl($scope) {
function SecurityCtrl($scope) {
}
function ContactCtrl($scope) {
}
function RepoListCtrl($scope, Restangular, UserService) {
$scope.namespace = null;

View file

@ -0,0 +1,32 @@
<div class="container">
<h2>
Contact Us<br>
<small>We are here to help!</small>
</h2>
<div class="row">
<div class="col-md-12">
<p>For sales or technical support, please use one of the following methods.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h4><i class="fa fa-envelope"></i> Email</h4>
<h4><a href="mailto:support@quay.io">support@quay.io</a></h4>
</div>
<div class="col-md-4">
<h4><i class="fa fa-comment"></i> IRC</h4>
<h4><a href="irc://chat.freenode.net:6665/quayio">Freenode: #quayio</a></h4>
</div>
<div class="col-md-4">
<h4>
<i class="fa fa-phone"></i> Telephone<br>
</h4>
<h4><a href="tel:+1-888-930-3475">888-930-3475</a></h4>
</div>
</div>
</div>