This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/partials/plans.html

153 lines
7.4 KiB
HTML
Raw Normal View History

<div class="container plans content-container">
2013-12-23 20:04:52 +00:00
<div class="row plans-list">
<div class="col-sm-2">
<div class="features-bar hidden-xs">
2013-12-23 21:37:10 +00:00
<div class="visible-lg" style="height: 50px"></div>
<div class="visible-md visible-sm" style="height: 70px"></div>
2013-12-23 20:04:52 +00:00
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="All plans have unlimited public repositories">
<span class="hidden-sm-inline">Public Repositories</span>
<span class="visible-sm-inline">Public Repos</span>
</span>
<i class="fa fa-hdd visible-lg"></i>
</div>
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="SSL encryption is enabled end-to-end for all operations">
SSL Encryption
</span>
<i class="fa fa-lock visible-lg"></i>
</div>
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="Allows users or organizations to grant permissions in multiple repositories to the same non-login-capable account">
Robot accounts
</span>
<i class="fa fa-wrench visible-lg"></i>
</div>
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="Repository images can be built directly from Dockerfiles">
Dockerfile Build
</span>
<i class="fa fa-upload visible-lg"></i>
</div>
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="Grant subsets of users in an organization their own permissions, either on a global basis or a per-repository basis">
Teams
</span>
<i class="fa fa-group visible-lg"></i>
</div>
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="Every action take within an organization is logged in detail, with the ability to visualize logs and download them">
Logging
</span>
<i class="fa fa-bar-chart-o visible-lg"></i>
</div>
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="Administrators can view and download the full invoice history for their organization">
Invoice History
</span>
<i class="fa fa-calendar visible-lg"></i>
</div>
2013-12-23 21:37:10 +00:00
<div class="feature">
<span class="feature-tooltip" bs-tooltip="tooltip.title" data-container="body" data-placement="right"
title="All plans have a 14-day free trial">
<span class="hidden-sm-inline">14-Day Free Trial</span>
<span class="visible-sm-inline">14-Day Trial</span>
</span>
<i class="fa fa-hdd visible-lg"></i>
</div>
2013-12-23 20:04:52 +00:00
</div>
2013-10-02 22:14:51 +00:00
2013-12-23 20:04:52 +00:00
</div>
<div class="col-sm-2 plan-container" ng-repeat="plan in plans" ng-show="plan.price > 0 && !plan.deprecated">
<div class="plan" ng-class="plan.stripeId + ' ' + (plan.bus_features ? 'business-plan' : '')">
2013-12-23 20:04:52 +00:00
<div class="plan-box">
<div class="plan-title">{{ plan.title }}</div>
<div class="plan-price">${{ plan.price/100 }}</div>
<div class="description">{{ plan.audience }}</div>
</div>
<div class="features hidden-xs">
2013-12-23 21:37:10 +00:00
<div class="count"><b>{{ plan.privateRepos }}</b> private repositories</div>
2013-12-23 20:04:52 +00:00
<div class="feature present"></div>
<div class="feature present"></div>
<div class="feature present"></div>
<div class="feature present"></div>
<div class="feature" ng-class="plan.bus_features ? 'present' : ''"></div>
<div class="feature" ng-class="plan.bus_features ? 'present' : ''"></div>
<div class="feature" ng-class="plan.bus_features ? 'present' : ''"></div>
2013-12-23 21:37:10 +00:00
<div class="feature present"></div>
2013-12-23 20:04:52 +00:00
</div>
<div class="features visible-xs">
2013-12-23 21:37:10 +00:00
<div class="count"><b>{{ plan.privateRepos }}</b> private repositories</div>
2013-12-23 20:04:52 +00:00
<div class="feature present">Unlimited Public Repositories</div>
<div class="feature present">SSL Encryption</div>
<div class="feature present">Robot accounts</div>
<div class="feature present">Dockerfile Build</div>
<div class="feature" ng-class="plan.bus_features ? 'present' : 'notpresent'">Teams</div>
<div class="feature" ng-class="plan.bus_features ? 'present' : 'notpresent'">Logging</div>
<div class="feature" ng-class="plan.bus_features ? 'present' : 'notpresent'">Invoice History</div>
2013-12-23 21:37:10 +00:00
<div class="feature present">14-Day Free Trial</div>
2013-12-23 20:04:52 +00:00
</div>
<button class="btn btn-block" ng-class="plan.bus_features ? 'btn-success' : 'btn-primary'"
2013-12-23 20:04:52 +00:00
ng-click="buyNow(plan.stripeId)">Start <span class="hidden-sm-inline">Free</span> Trial</button>
2013-11-05 19:40:45 +00:00
</div>
2013-10-02 22:14:51 +00:00
</div>
</div>
2013-10-02 22:14:51 +00:00
<div class="row plan-faq">
<div class="col-md-6">
<dl>
<dt>Can I use Quay for free?</dt>
<dd>Yes! We offer unlimited storage and serving of public repositories. We strongly believe in the open source community and will do what we can to help!</dd>
<dt>Does my plan have secure communication?</dt>
<dd>Yes! All plans provide <b>secure</b> communication to and from Quay via <b>SSL</b>.</dd>
<dt>What types of payment do you accept?</dt>
<dd>Quay uses Stripe as our payment processor, so we can accept any of the payment options they offer, which are currently: Visa, MasterCard, American Express, JCB, Discover and Diners Club.</dd>
</dl>
2013-10-02 22:14:51 +00:00
</div>
<div class="col-md-6">
<dl>
<dt>Can I change my plan?</dt>
<dd>Yes, you can change your plan at any time and your account will be pro-rated for the difference.</dd>
<dt>Do you offer special plans for business or academic institutions?</dt>
<dd>Please contact us at our <a href="mailto:support@quay.io">support email address</a> to discuss the details of your organization and intended usage.</dd>
</dl>
2013-10-02 22:14:51 +00:00
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>Enterprise</h3>
<dt>I work in an enterprise and we need to run Quay.io on our servers. Can I do so?</dt>
<dd>Please contact us at our <a href="mailto:support@quay.io">support email address</a> to discuss enterprise plans.</dd>
</div>
2013-10-02 22:14:51 +00:00
</div>
</div>
<!-- Modal message dialog -->
<div class="modal fade" id="signinModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="user-setup" signed-in="signedIn()" redirect-url="'/plans/'"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->