71 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			71 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 - Add a Linode</title> | ||
|  | 		<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> | ||
|  | 		<link rel="stylesheet" type="text/css" href="add.css" /> | ||
|  | 		<script src="add.js" type="module"></script> | ||
|  | 	</head> | ||
|  | 	<body> | ||
|  | 		<!--#include virtual="/include/header.html"--> | ||
|  | 		<div id="main-content" class="wrapper"> | ||
|  | 			<div id="top-links"> | ||
|  | 				<span id="left-links"><a href="/linodes">Linodes</a> » <strong>Add a Linode</strong></span> | ||
|  | 				<span id="right-links"><a href="/volumes">Manage Volumes</a> | <a href="/images">Manage Images</a> | <a href="/stackscripts">Manage StackScripts</a></span> | ||
|  | 			</div> | ||
|  | 			<div id="instances"> | ||
|  | 				<h2>Select an instance type</h2> | ||
|  | 				<div class="instance-category"> | ||
|  | 					<h3>Nanode Instances</h3> | ||
|  | 					<p>Nanode instances are good for low-duty workloads, where performance isn't critical.</p> | ||
|  | 					<div id="nanode"></div> | ||
|  | 				</div> | ||
|  | 				<div class="instance-category"> | ||
|  | 					<h3>Standard Instances</h3> | ||
|  | 					<p>Standard instances are good for medium-duty workloads and are a good mix of performance, resources, and price.</p> | ||
|  | 					<div id="standard"></div> | ||
|  | 				</div> | ||
|  | 				<div class="instance-category"> | ||
|  | 					<h3>Dedicated CPU Instances</h3> | ||
|  | 					<p>Dedicated CPU instances are good for full-duty workloads where consistent performance is important.</p> | ||
|  | 					<div id="dedicated"></div> | ||
|  | 				</div> | ||
|  | 				<div class="instance-category"> | ||
|  | 					<h3>High Memory Instances</h3> | ||
|  | 					<p>High Memory instances favor RAM over other resources, and can be good for memory hungry use cases like caching and in-memory databases.</p> | ||
|  | 					<div id="highmem"></div> | ||
|  | 				</div> | ||
|  | 				<div class="instance-category"> | ||
|  | 					<h3>GPU Instances</h3> | ||
|  | 					<p>Linodes with dedicated GPUs accelerate highly specialized applications such as machine learning, AI, and video transcoding.</p> | ||
|  | 					<div id="gpu"></div> | ||
|  | 				</div> | ||
|  | 			</div> | ||
|  | 			<div id="location"> | ||
|  | 				<h2>Location</h2> | ||
|  | 				<select id="datacenters"></select> | ||
|  | 			</div> | ||
|  | 			<div id="submit"> | ||
|  | 				<button id="add-button" type="button">Add this Linode!</button> | ||
|  | 			</div> | ||
|  | 		</div> | ||
|  | 	</body> | ||
|  | </html> |