97 lines
3.0 KiB
Plaintext
97 lines
3.0 KiB
Plaintext
<!--
|
|
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 // Update Credit Card</title>
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
<link rel="stylesheet" type="text/css" href="creditcard.css" />
|
|
<script src="creditcard.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="creditcard">
|
|
<table class="lmc-table">
|
|
<thead>
|
|
<tr>
|
|
<td colspan="3">Update Credit Card</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">Current Card</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="lmc-tr3">
|
|
<td>Current Card</td>
|
|
<td>xxxxxxxxxxxx<span id="cc-current"></span> Exp: <span id="expiry-current"></span></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
<tbody class="lmc-tbody-head">
|
|
<tr class="noshow">
|
|
<td colspan="3"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">Update Card</td>
|
|
</tr>
|
|
</tbody>
|
|
<tbody>
|
|
<tr class="lmc-tr3">
|
|
<td>New Card Number</td>
|
|
<td><input id="cc-new" type="text" /></td>
|
|
<td class="info">Linode accepts Visa, MasterCard, American Express, and Discover</td>
|
|
</tr>
|
|
<tr class="lmc-tr3">
|
|
<td>CVV</td>
|
|
<td><input id="cvv" type="text" size="8" /></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr class="lmc-tr3">
|
|
<td>Expires</td>
|
|
<td>
|
|
<select id="expiry-month">
|
|
<option value="1">01</option>
|
|
<option value="2">02</option>
|
|
<option value="3">03</option>
|
|
<option value="4">04</option>
|
|
<option value="5">05</option>
|
|
<option value="6">06</option>
|
|
<option value="7">07</option>
|
|
<option value="8">08</option>
|
|
<option value="9">09</option>
|
|
<option value="10">10</option>
|
|
<option value="11">11</option>
|
|
<option value="12">12</option>
|
|
</select>
|
|
<select id="expiry-year"></select>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr class="lmc-tr3">
|
|
<td></td>
|
|
<td colspan="2"><button id="update-button" type="button">Update Credit Card</button>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|