forked from coolaj86/walnut.js
		
	
		
			
	
	
		
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|  | <!DOCTYPE html> | ||
|  | <html> | ||
|  | <head> | ||
|  |   <title>WALNUT</title> | ||
|  |   <link href="css/bootstrap.css" rel="stylesheet" type="text/css" /> | ||
|  | </head> | ||
|  | <body class="container"> | ||
|  |   <h1 class="header">Welcome to WALNUT</h1> | ||
|  |   <p class="lead">Your server has no security certificates. | ||
|  |   In order to continue we need to know what email address and domain the certificates should be issued to: | ||
|  |   </p> | ||
|  |   <form class="js-form-le"> | ||
|  |     <div> | ||
|  |       <label>Device: <span class="js-devicename"></span></label> | ||
|  |       <pre><code class="js-inets"> </code></pre> | ||
|  |     </div> | ||
|  |     <label>Primary Domain:</label> | ||
|  |     <input class="js-domain form-control" type="text" placeholder="ex: example.com" required /> | ||
|  |     <br> | ||
|  |     <label>Primary Email:</label> | ||
|  |     <input class="js-email form-control" type="email" placeholder="ex: john.doe@example.com" required /> | ||
|  |     <br> | ||
|  |     <label> | ||
|  |       <input class="js-agree-tos" type="checkbox" required /> Agree to the | ||
|  |         <a href="https://letsencrypt.org/repository/">Let's Encrypt Subscriber Agreement</a> | ||
|  |     </label> | ||
|  |     <br> | ||
|  |     <button class="btn btn-primary" type="submit">Submit</button> | ||
|  |   </form> | ||
|  |   <script src="/js/jquery-2.2.2.js"></script> | ||
|  |   <script src="/js/index.js"></script> | ||
|  | </body> | ||
|  | </html> |