lmc/account/index.shtml

158 lines
4.9 KiB
Plaintext
Raw Normal View History

2020-03-13 23:01:39 -04:00
<!--
This file is part of Linode Manager Classic.
Linode Manager Classic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Linode Manager Classic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Linode Manager Classic. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LMC - Account</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="account.css" />
<script src="account.js" type="module"></script>
</head>
<body>
<!--#include virtual="/include/header.html"-->
<!--#include virtual="/include/account_subnav.html"-->
<div id="main-content" class="wrapper">
<div id="account">
<table class="lmc-table">
<thead>
<tr>
<td colspan="3">Account Information</td>
</tr>
<tr>
<td colspan="3">Contact</td>
</tr>
</thead>
<tbody>
<tr class="lmc-tr3">
<td>Address</td>
<td colspan="2" id="address"></td>
</tr>
<tr class="lmc-tr3">
<td>Email</td>
<td colspan="2" id="email"></td>
</tr>
</tbody>
<tbody class="lmc-tbody-head">
<tr class="noshow">
<td colspan="3"></td>
</tr>
<tr>
2024-06-17 18:21:01 -04:00
<td colspan="3">Payment Methods</td>
2020-03-13 23:01:39 -04:00
</tr>
</tbody>
2024-06-17 18:21:01 -04:00
<tbody id="payment-methods"></tbody>
2020-03-13 23:01:39 -04:00
<tbody class="lmc-tbody-head">
<tr class="noshow">
<td colspan="3"></td>
</tr>
<tr>
<td colspan="3">Recent Billing Activity</td>
</tr>
</tbody>
<tbody>
<tr id="billing-row" class="lmc-tr3">
<td>Recent Activity</td>
<td colspan="2">
<table class="lmc-table">
<tbody id="billing-activity"></tbody>
</table>
</td>
</tr>
<tr id="billing-link" class="lmc-tr3">
<td></td>
<td colspan="2"><a href="/account/billing_history">Billing History »</a></td>
</tr>
</tbody>
<tbody class="lmc-tbody-head">
<tr class="noshow">
<td colspan="3"></td>
</tr>
<tr>
<td colspan="3">Account Balance</td>
</tr>
</tbody>
<tbody>
<tr class="lmc-tr3">
<td>Account Balance</td>
<td><span id="balance"></span><span id="balance-status"><a id="pay" href="/account/make_a_payment">(make a payment)</a></span></td>
<td id="current" class="info"></td>
</tr>
<tr id="uninvoiced" class="lmc-tr3">
<td>Uninvoiced Balance</td>
<td><span id="uninvoiced-balance"></span> and counting</td>
<td class="info">This will appear on your next invoice.</td>
</tr>
</tbody>
<tbody class="lmc-tbody-head promotions">
<tr class="noshow">
<td colspan="3"></td>
</tr>
<tr>
<td colspan="3">Promotions</td>
</tr>
</tbody>
<tbody id="promotions-table" class="promotions"></tbody>
<tbody class="lmc-tbody-head gdpr">
<tr class="noshow">
<td colspan="3"></td>
</tr>
<tr>
<td colspan="3">EU Model Contract</td>
</tr>
</tbody>
<tbody class="gdpr">
<tr class="lmc-tr3">
<td>Signed</td>
<td colspan="2"><span id="gdpr-date"></span> (<a href="/account/eu_model">view</a>)</td>
</tr>
</tbody>
</table>
<table id="managed" class="lmc-table">
<thead>
<tr>
<td colspan="2">Upgrade to Managed</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
</thead>
<tbody>
<tr class="lmc-tr3">
<td>Linode Managed</td>
<td>
Let Linode worry about your infrastructure, so you can get back to worrying about your business. Linode Managed helps keep your systems up and running with a team of experts responding to monitoring events, so you can sleep well.<br />
<br />
Linode Managed includes 24/7 monitoring and incident responses, backups, and Longview Pro, +$100/mo. per Linode.
</td>
</tr>
<tr class="lmc-tr3">
<td></td>
<td><button disabled id="managed-button" type="button">Upgrade to Managed now!</button> <span id="learn-more">or <a target="_blank" href="https://www.linode.com/products/managed/">learn more</a>.</span></td>
</tr>
</tbody>
</table>
<p>
Your account has been active since <span id="active"></span><br />
<br />
<a id="cancel" href="/account/cancel">Cancel this Account</a>
</p>
</div>
</div>
</body>
</html>