lmc/account/contact/index.shtml

108 lines
3.4 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 // Contact Info</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="contact.css" />
<script src="contact.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="contact">
<table class="lmc-table">
<thead>
<tr>
<td colspan="3">Contact Information</td>
</tr>
</thead>
<tbody>
<tr class="lmc-tr3">
<td>Company Name</td>
<td><input id="company" type="text" size="30" maxLength="128" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Email</td>
<td><input id="email" type="email" size="30" maxLength="128" /></td>
<td class="info">Main point of contact and receives all emails.</td>
</tr>
<tr class="lmc-tr3">
<td>First Name</td>
<td><input id="first-name" type="text" size="30" maxLength="50" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Last Name</td>
<td><input id="last-name" type="text" size="30" maxLength="50" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Address1</td>
<td><input id="address1" type="text" size="30" maxLength="64" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Address2</td>
<td><input id="address2" type="text" size="30" maxLength="64" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>City</td>
<td><input id="city" type="text" size="30" maxLength="24" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>State</td>
<td><input id="state" type="text" size="30" maxLength="24" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Zip</td>
<td><input id="zip" type="text" size="30" maxLength="16" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Country</td>
<td><select id="country"></select></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td>Tax ID</td>
<td><input id="tax" type="text" size="30" maxLength="100" /></td>
<td class="info">VAT, GST, etc. identification number</td>
</tr>
<tr class="lmc-tr3">
<td>Phone1</td>
<td><input id="phone" type="tel" size="30" maxLength="32" /></td>
<td></td>
</tr>
<tr class="lmc-tr3">
<td></td>
<td colspan="2"><button disabled id="save-button" type="button">Save Changes</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>