94 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			94 lines
		
	
	
		
			2.8 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 - My Profile</title> | ||
|  | 		<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> | ||
|  | 		<link rel="stylesheet" type="text/css" href="profile.css" /> | ||
|  | 		<script src="profile.js" type="module"></script> | ||
|  | 	</head> | ||
|  | 	<body> | ||
|  | 		<!--#include virtual="/include/header.html"--> | ||
|  | 		<!--#include virtual="/include/profile_subnav.html"--> | ||
|  | 		<div id="main-content" class="wrapper"> | ||
|  | 			<div id="profile"> | ||
|  | 				<table class="lmc-table"> | ||
|  | 					<thead> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">My Profile (<span id="user"></span>, in case you forgot)</td> | ||
|  | 						</tr> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">Timezone</td> | ||
|  | 						</tr> | ||
|  | 					</thead> | ||
|  | 					<tbody> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Timezone</td> | ||
|  | 							<td> | ||
|  | 								LMC automatically detects your timezone from your system.<br /> | ||
|  | 								Your current timezone offset is: <strong><span id="timezone"></span></strong> | ||
|  | 							</td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody class="lmc-tbody-head"> | ||
|  | 						<tr class="noshow"> | ||
|  | 							<td colspan="2"></td> | ||
|  | 						</tr> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">Email</td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Current Email</td> | ||
|  | 							<td id="current-address"></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>New Email</td> | ||
|  | 							<td><input id="new-address" type="email" size="30" /></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td></td> | ||
|  | 							<td><button id="change-button" type="button">Change Email</button></td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody class="lmc-tbody-head"> | ||
|  | 						<tr class="noshow"> | ||
|  | 							<td colspan="2"></td> | ||
|  | 						</tr> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">Linode Events Email</td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Events Email Notification</td> | ||
|  | 							<td>Notifications are currently: <span id="notifications"></span></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td></td> | ||
|  | 							<td><button disabled id="toggle-notifications" type="button">Toggle Event Email Notifications</button></td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 				</table> | ||
|  | 			</div> | ||
|  | 		</div> | ||
|  | 	</body> | ||
|  | </html> |