81 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			81 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 // Password & Authentication</title> | ||
|  | 		<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> | ||
|  | 		<link rel="stylesheet" type="text/css" href="auth.css" /> | ||
|  | 		<script src="auth.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="auth"> | ||
|  | 				<table class="lmc-table"> | ||
|  | 					<thead> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">Authentication</td> | ||
|  | 						</tr> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">Change Password</td> | ||
|  | 						</tr> | ||
|  | 					</thead> | ||
|  | 					<tbody> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Reset Password</td> | ||
|  | 							<td><a id="pw-reset" href="https://login.linode.com/forgot/password?username=" target="_blank">Click here to reset your password</a></td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody class="lmc-tbody-head"> | ||
|  | 						<tr class="noshow"> | ||
|  | 							<td colspan="2"></td> | ||
|  | 						</tr> | ||
|  | 						<tr> | ||
|  | 							<td colspan="2">Two-Factor Authentication</td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Description</td> | ||
|  | 							<td>When two-factor authentication is enabled, you'll need to provide a token before you can log in to your Linode account.</td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Status</td> | ||
|  | 							<td>Two-factor authentication is currently: <strong><span id="tfa-status"></span></strong><span class="tfa"> - <a id="tfa-disable" href="#">disable</a></span></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3 tfa"> | ||
|  | 							<td>Scratch Code</td> | ||
|  | 							<td>One-time use emergency scratch code is shown only once.</td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3 tfa"> | ||
|  | 							<td>Trusted Computers</td> | ||
|  | 							<td id="trusted">The following computers can skip two-factor authentication:</td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td></td> | ||
|  | 							<td><button disabled id="tfa-enable" type="button">Enable Two-Factor Authentication</button></td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 				</table> | ||
|  | 			</div> | ||
|  | 		</div> | ||
|  | 	</body> | ||
|  | </html> |