92 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			92 lines
		
	
	
		
			3.2 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 Zone</title> | ||
|  | 		<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> | ||
|  | 		<link rel="stylesheet" type="text/css" href="domain_add.css" /> | ||
|  | 		<script src="domain_add.js" type="module"></script> | ||
|  | 	</head> | ||
|  | 	<body> | ||
|  | 		<!--#include virtual="/include/header.html"--> | ||
|  | 		<div id="main-content" class="wrapper"> | ||
|  | 			<div id="top-links"><a href="/dns">DNS Manager</a> » <span class="top-links-title">Add a Zone</span></div> | ||
|  | 			<div id="domain-add"> | ||
|  | 				<table class="lmc-table"> | ||
|  | 					<thead class="master-section"> | ||
|  | 						<tr> | ||
|  | 							<td colspan="3">Add a Master Zone</td> | ||
|  | 						</tr> | ||
|  | 					</thead> | ||
|  | 					<tbody class="master-section"> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Domain</td> | ||
|  | 							<td><input id="master-domain" type="text" size="30" /></td> | ||
|  | 							<td></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>SOA Email</td> | ||
|  | 							<td><input id="email" type="text" size="30" placeholder="you@example.com" /></td> | ||
|  | 							<td></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Insert Default Records</td> | ||
|  | 							<td> | ||
|  | 								<input checked id="yes" type="radio" name="insert-records" /><label for="yes">Yes, insert a few records to get me started, using this Linode: </label><select id="linode"></select><br /> | ||
|  | 								<input id="no" type="radio" name="insert-records" /><label for="no">No, I want the zone empty</label> | ||
|  | 							</td> | ||
|  | 							<td></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td></td> | ||
|  | 							<td><button disabled id="add-master" type="button">Add a Master Zone »</button></td> | ||
|  | 							<td><a href="/dns/domain_add?type=slave">I wanted a slave zone</a></td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody class="slave-section lmc-tbody-head"> | ||
|  | 						<tr> | ||
|  | 							<td colspan="3">Add a Slave Zone</td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 					<tbody class="slave-section"> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Domain</td> | ||
|  | 							<td><input id="slave-domain" type="text" size="30" /></td> | ||
|  | 							<td></td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td>Masters</td> | ||
|  | 							<td><textarea id="masters" cols="35" rows="4"></textarea></td> | ||
|  | 							<td class="info"> | ||
|  | 								The IP addresses of the master DNS servers for this zone.<br /> | ||
|  | 								Semicolon or new line delimited. | ||
|  | 							</td> | ||
|  | 						</tr> | ||
|  | 						<tr class="lmc-tr3"> | ||
|  | 							<td></td> | ||
|  | 							<td><button id="add-slave" type="button">Add a Slave Zone »</button></td> | ||
|  | 							<td><a href="/dns/domain_add?type=master">I wanted a master zone</a></td> | ||
|  | 						</tr> | ||
|  | 					</tbody> | ||
|  | 				</table> | ||
|  | 			</div> | ||
|  | 		</div> | ||
|  | 	</body> | ||
|  | </html> |