<!-- 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 // Add 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="top-links"><a href="/account">Account</a> ยป <span class="top-links-title">Add Credit Card</span></div> <div id="creditcard"> <table class="lmc-table"> <thead> <tr> <td colspan="3">Add Credit Card</td> </tr> </thead> <tbody> <tr class="lmc-tr3"> <td>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>Make Default</td> <td><input id="default" type="checkbox" /></td> <td class="info">This card will become the new default payment method</td> </tr> <tr class="lmc-tr3"> <td></td> <td colspan="2"><button id="update-button" type="button">Add Credit Card</button> </tr> </tbody> </table> </div> </div> </body> </html>