mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	fix: make register html/template consistent with other html
- makes the html/template for /register follow the same formatting as /apple and /windows - adds a <title> element - minor change for consistency's sake
This commit is contained in:
		
							parent
							
								
									b85dd7abbd
								
							
						
					
					
						commit
						c06689dec1
					
				
							
								
								
									
										27
									
								
								api.go
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								api.go
									
									
									
									
									
								
							| @ -45,22 +45,21 @@ type registerWebAPITemplateConfig struct { | |||||||
| } | } | ||||||
| 
 | 
 | ||||||
| var registerWebAPITemplate = template.Must( | var registerWebAPITemplate = template.Must( | ||||||
| 	template.New("registerweb").Parse(`<html> | 	template.New("registerweb").Parse(` | ||||||
|  | <html> | ||||||
|  | 	<head> | ||||||
|  | 		<title>Registration - Headscale</title> | ||||||
|  | 	</head> | ||||||
| 	<body> | 	<body> | ||||||
| 	<h1>headscale</h1> | 		<h1>headscale</h1> | ||||||
| 	<p> | 		<h2>Machine registration</h2> | ||||||
| 		Run the command below in the headscale server to add this machine to your network: | 		<p> | ||||||
| 	</p> | 			Run the command below in the headscale server to add this machine to your network: | ||||||
| 
 | 		</p> | ||||||
| 	<p> | 		<pre><code>headscale -n NAMESPACE nodes register --key {{.Key}}</code></pre> | ||||||
| 		<code> |  | ||||||
| 			<b>headscale -n NAMESPACE nodes register --key {{.Key}}</b> |  | ||||||
| 		</code> |  | ||||||
| 	</p> |  | ||||||
| 
 |  | ||||||
| 	</body> | 	</body> | ||||||
| 	</html>`), | </html> | ||||||
| ) | `)) | ||||||
| 
 | 
 | ||||||
| // RegisterWebAPI shows a simple message in the browser to point to the CLI
 | // RegisterWebAPI shows a simple message in the browser to point to the CLI
 | ||||||
| // Listens in /register.
 | // Listens in /register.
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user