mirror of
https://github.com/juanfont/headscale.git
synced 2026-09-14 12:32:02 +09:00
22 lines
528 B
Go
22 lines
528 B
Go
package templates
|
|
|
|
import (
|
|
"github.com/chasefleming/elem-go"
|
|
)
|
|
|
|
func Windows(url string) *elem.Element {
|
|
return page(
|
|
"headscale - Windows",
|
|
H1(elem.Text("Windows configuration")),
|
|
P(
|
|
elem.Text("Download "),
|
|
externalLink("https://tailscale.com/download/windows", "Tailscale for Windows"),
|
|
elem.Text(" and install it."),
|
|
),
|
|
P(
|
|
elem.Text("Open a Command Prompt or PowerShell and use Tailscale's login command to connect with headscale:"),
|
|
),
|
|
codeBlockText("tailscale login --login-server "+url),
|
|
)
|
|
}
|