<!-- 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 // Make a Payment</title> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> <link rel="stylesheet" type="text/css" href="make_a_payment.css" /> <script src="make_a_payment.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="top-links"><a href="/account">Account</a> ยป <span class="top-links-title">Make a Payment</span></div> <div id="make-a-payment"> <table class="lmc-table"> <thead> <tr> <td colspan="3">Make a Payment</td> </tr> </thead> <tbody> <tr class="lmc-tr3"> <td>Current Balance</td> <td id="balance" class="balance-positive"></td> <td></td> </tr> </tbody> <tbody class="lmc-tbody-head"> <tr class="noshow"> <td colspan="3"></td> </tr> <tr> <td colspan="3">Make a Payment - via Credit Card</td> </tr> </tbody> <tbody> <tr class="lmc-tr3"> <td>Current Card</td> <td>xxxxxxxxxxxx<span id="cc-number"></span> Exp: <span id="cc-exp"></span></td> <td class="info"><a href="/account/creditcard">(update credit card)</a></td> </tr> <tr class="lmc-tr3"> <td>Amount to Charge</td> <td><input id="cc-amount" type="number" min="0" max="50000" step="0.01" value="0.00" /> <span class="info">(USD)</span></td> <td></td> </tr> <tr class="lmc-tr3"> <td>CVV</td> <td><input id="cvv" type="text" size="8" /> <span class="info">(optional)</span></td> <td></td> </tr> <tr class="lmc-tr3"> <td></td> <td colspan="2"><button disabled id="cc-charge" type="button">Charge Credit Card</button></td> </tr> </tbody> <tbody class="lmc-tbody-head"> <tr class="noshow"> <td colspan="3"></td> </tr> <tr> <td colspan="3">Make a Payment - via PayPal</td> </tr> </tbody> <tbody> <tr class="lmc-tr3"> <td>Amount to Pay</td> <td><input id="paypal-amount" type="number" min="0" max="10000" step="0.01" value="0.00" /> <span class="info">(USD)</span></td> <td></td> </tr> <tr class="lmc-tr3"> <td></td> <td colspan="2"><button disabled id="paypal-charge" type="button">Continue...</button></td> </tr> </tbody> </table> </div> </div> </body> </html>