2020-11-07 04:31:48 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
|
|
<title>{{ .Static.WebsiteTitle }} - Admin</title>
|
|
|
|
<meta name="description" content="{{ .Static.WebsiteTitle }}">
|
|
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="/fonts/fontawesome-all.min.css">
|
|
|
|
<link rel="stylesheet" href="/css/custom.css">
|
|
|
|
</head>
|
|
|
|
|
2020-11-09 08:32:20 -05:00
|
|
|
<body id="page-top" class="d-flex flex-column min-vh-100">
|
2020-11-07 04:31:48 -05:00
|
|
|
{{template "prt_nav.html" .}}
|
2020-11-09 08:32:20 -05:00
|
|
|
<div class="container mt-5">
|
2021-04-03 13:11:05 -04:00
|
|
|
{{template "prt_flashes.html" .}}
|
|
|
|
|
|
|
|
<!-- server mode -->
|
|
|
|
{{if eq .Device.Type "server"}}
|
2020-11-09 05:06:02 -05:00
|
|
|
{{if .Peer.IsNew}}
|
2020-11-07 04:31:48 -05:00
|
|
|
<h1>Create a new client</h1>
|
|
|
|
{{else}}
|
2021-04-03 13:11:05 -04:00
|
|
|
<h1>Edit client: <strong>{{.Peer.Identifier}}</strong></h1>
|
2020-11-07 04:31:48 -05:00
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
2021-03-22 17:51:37 -04:00
|
|
|
<input type="hidden" name="_csrf" value="{{.Csrf}}">
|
2020-11-07 04:31:48 -05:00
|
|
|
<input type="hidden" name="uid" value="{{.Peer.UID}}">
|
2021-04-03 16:38:22 -04:00
|
|
|
<input type="hidden" name="devicetype" value="{{.Device.Type}}">
|
|
|
|
<input type="hidden" name="device" value="{{.Device.DeviceName}}">
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="hidden" name="endpointpubkey" value="{{.Peer.EndpointPublicKey}}">
|
|
|
|
<input type="hidden" name="endpoint" value="{{.Peer.Endpoint}}">
|
2020-11-10 16:23:05 -05:00
|
|
|
{{if .EditableKeys}}
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_PrivateKey">Private Key</label>
|
|
|
|
<input type="text" name="privkey" class="form-control" id="server_PrivateKey" value="{{.Peer.PrivateKey}}">
|
2020-11-10 16:23:05 -05:00
|
|
|
</div>
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
2020-11-10 16:23:05 -05:00
|
|
|
<div class="form-row">
|
2020-12-18 16:26:36 -05:00
|
|
|
<div class="form-group required col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_PublicKey">Public Key</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="pubkey" class="form-control" id="server_PublicKey" value="{{.Peer.PublicKey}}" required>
|
2020-11-10 16:23:05 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_PresharedKey">Preshared Key</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="presharedkey" class="form-control" id="server_PresharedKey" value="{{.Peer.PresharedKey}}" required>
|
2020-11-10 16:23:05 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<input type="hidden" name="privkey" value="{{.Peer.PrivateKey}}">
|
|
|
|
<input type="hidden" name="presharedkey" value="{{.Peer.PresharedKey}}">
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_ro_PublicKey">Public Key</label>
|
|
|
|
<input type="text" name="pubkey" readonly class="form-control" id="server_ro_PublicKey" value="{{.Peer.PublicKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="server_Identifier">Client Friendly Name</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="identifier" class="form-control" id="server_Identifier" value="{{.Peer.Identifier}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="server_Email">Client Email Address</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="email" name="mail" class="form-control" id="server_Email" value="{{.Peer.Email}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="server_IP">Client IP Address</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="ip" class="form-control" id="server_IP" value="{{.Peer.IPsStr}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_AllowedIP">Allowed IPs</label>
|
|
|
|
<input type="text" name="allowedip" class="form-control" id="server_AllowedIP" value="{{.Peer.AllowedIPsStr}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_DNS">Client DNS Servers</label>
|
|
|
|
<input type="text" name="dns" class="form-control" id="server_DNS" value="{{.Peer.DNSStr}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-6">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="server_PersistentKeepalive">Persistent Keepalive</label>
|
|
|
|
<input type="number" name="keepalive" class="form-control" id="server_PersistentKeepalive" placeholder="16" value="{{.Peer.PersistentKeepalive}}">
|
|
|
|
</div>
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="server_MTU">Client MTU</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="number" name="mtu" class="form-control" id="server_MTU" placeholder="0" value="{{.Peer.Mtu}}">
|
2021-04-03 16:38:22 -04:00
|
|
|
</div>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<div class="custom-control custom-switch">
|
|
|
|
<input class="custom-control-input" name="isdisabled" type="checkbox" value="true" id="server_Disabled" {{if .Peer.DeactivatedAt}}checked{{end}}>
|
|
|
|
<label class="custom-control-label" for="server_Disabled">
|
|
|
|
Disabled
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="custom-control custom-switch">
|
2021-04-03 17:54:35 -04:00
|
|
|
<input class="custom-control-input" name="ignoreglobalsettings" type="checkbox" value="true" id="server_IgnoreGlobalSettings" {{if .Peer.IgnoreGlobalSettings}}checked{{end}}>
|
2021-04-03 13:11:05 -04:00
|
|
|
<label class="custom-control-label" for="server_IgnoreGlobalSettings">
|
|
|
|
Ignore global settings
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
|
|
<a href="/admin" class="btn btn-secondary">Cancel</a>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<!-- client mode -->
|
|
|
|
{{if eq .Device.Type "client"}}
|
|
|
|
{{if .Peer.IsNew}}
|
|
|
|
<h1>Create a new remote endpoint</h1>
|
|
|
|
{{else}}
|
|
|
|
<h1>Edit remote endpoint: <strong>{{.Peer.Identifier}}</strong></h1>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
|
|
<input type="hidden" name="_csrf" value="{{.Csrf}}">
|
|
|
|
<input type="hidden" name="uid" value="{{.Peer.UID}}">
|
|
|
|
<input type="hidden" name="mail" value="{{.AdminEmail}}">
|
2021-04-03 16:38:22 -04:00
|
|
|
<input type="hidden" name="devicetype" value="{{.Device.Type}}">
|
|
|
|
<input type="hidden" name="device" value="{{.Device.DeviceName}}">
|
2021-04-03 13:11:05 -04:00
|
|
|
{{if .EditableKeys}}
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="client_PrivateKey">Private Key</label>
|
|
|
|
<input type="text" name="privkey" class="form-control" id="client_PrivateKey" value="{{.Peer.PrivateKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
2021-04-03 16:38:22 -04:00
|
|
|
<label for="client_PublicKey">Peer Public Key</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="pubkey" class="form-control" id="client_PublicKey" value="{{.Peer.PublicKey}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="client_PresharedKey">Preshared Key</label>
|
|
|
|
<input type="text" name="presharedkey" class="form-control" id="client_PresharedKey" value="{{.Peer.PresharedKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<input type="hidden" name="privkey" value="{{.Peer.PrivateKey}}">
|
|
|
|
<input type="hidden" name="presharedkey" value="{{.Peer.PresharedKey}}">
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="client_ro_PublicKey">Public Key</label>
|
|
|
|
<input type="text" name="pubkey" readonly class="form-control" id="client_ro_PublicKey" value="{{.Peer.PublicKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="client_Identifier">Endpoint Friendly Name</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="identifier" class="form-control" id="client_Identifier" value="{{.Peer.Identifier}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="client_Endpoint">Endpoint Address</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="endpoint" class="form-control" id="client_Endpoint" value="{{.Peer.Endpoint}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
2021-04-03 16:38:22 -04:00
|
|
|
<label for="client_EndpointPublicKey">Endpoint Public Key</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="endpointpubkey" class="form-control" id="client_EndpointPublicKey" value="{{.Peer.EndpointPublicKey}}" required>
|
2021-04-03 16:38:22 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="client_AllowedIP">Allowed IPs</label>
|
|
|
|
<input type="text" name="allowedip" class="form-control" id="client_AllowedIP" value="{{.Peer.AllowedIPsStr}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="client_PersistentKeepalive">Persistent Keepalive</label>
|
|
|
|
<input type="number" name="keepalive" class="form-control" id="client_PersistentKeepalive" placeholder="16" value="{{.Peer.PersistentKeepalive}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<div class="custom-control custom-switch">
|
|
|
|
<input class="custom-control-input" name="isdisabled" type="checkbox" value="true" id="client_Disabled" {{if .Peer.DeactivatedAt}}checked{{end}}>
|
|
|
|
<label class="custom-control-label" for="client_Disabled">
|
|
|
|
Disabled
|
|
|
|
</label>
|
2020-11-10 16:23:05 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
|
|
<a href="/admin" class="btn btn-secondary">Cancel</a>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<!-- custom mode -->
|
|
|
|
{{if eq .Device.Type "custom"}}
|
|
|
|
{{if .Peer.IsNew}}
|
|
|
|
<h1>Create a new peer</h1>
|
|
|
|
{{else}}
|
|
|
|
<h1>Edit peer: <strong>{{.Peer.Identifier}}</strong></h1>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
|
|
<input type="hidden" name="_csrf" value="{{.Csrf}}">
|
|
|
|
<input type="hidden" name="uid" value="{{.Peer.UID}}">
|
2021-04-03 16:38:22 -04:00
|
|
|
<input type="hidden" name="devicetype" value="{{.Device.Type}}">
|
|
|
|
<input type="hidden" name="device" value="{{.Device.DeviceName}}">
|
2021-04-03 13:11:05 -04:00
|
|
|
{{if .EditableKeys}}
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="custom_PrivateKey">Private Key</label>
|
|
|
|
<input type="text" name="privkey" class="form-control" id="custom_PrivateKey" value="{{.Peer.PrivateKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="custom_PublicKey">Public Key</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="pubkey" class="form-control" id="custom_PublicKey" value="{{.Peer.PublicKey}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="custom_PresharedKey">Preshared Key</label>
|
|
|
|
<input type="text" name="presharedkey" class="form-control" id="custom_PresharedKey" value="{{.Peer.PresharedKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<input type="hidden" name="privkey" value="{{.Peer.PrivateKey}}">
|
|
|
|
<input type="hidden" name="presharedkey" value="{{.Peer.PresharedKey}}">
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="custom_ro_PublicKey">Public Key</label>
|
|
|
|
<input type="text" name="pubkey" readonly class="form-control" id="custom_ro_PublicKey" value="{{.Peer.PublicKey}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-10 16:23:05 -05:00
|
|
|
{{end}}
|
2020-11-07 04:31:48 -05:00
|
|
|
<div class="form-row">
|
2020-12-18 16:26:36 -05:00
|
|
|
<div class="form-group required col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="custom_Identifier">Peer Friendly Name</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="identifier" class="form-control" id="custom_Identifier" value="{{.Peer.Identifier}}" required>
|
2021-04-03 13:11:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group required col-md-12">
|
|
|
|
<label for="custom_Email">Peer Email Address</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="email" name="mail" class="form-control" id="custom_Email" value="{{.Peer.Email}}" required>
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="custom_Endpoint">Endpoint Address</label>
|
|
|
|
<input type="text" name="endpoint" class="form-control" id="custom_Endpoint" value="{{.Peer.Endpoint}}">
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2020-12-18 16:26:36 -05:00
|
|
|
<div class="form-group required col-md-12">
|
2021-04-03 16:38:22 -04:00
|
|
|
<label for="custom_EndpointPublicKey">Endpoint Public Key</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="text" name="endpointpubkey" class="form-control" id="custom_EndpointPublicKey" value="{{.Peer.EndpointPublicKey}}" required>
|
2021-04-03 16:38:22 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="custom_IP">Peer IP Address</label>
|
|
|
|
<input type="text" name="ip" class="form-control" id="custom_IP" value="{{.Peer.IPsStr}}">
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="custom_AllowedIP">Allowed IPs</label>
|
|
|
|
<input type="text" name="allowedip" class="form-control" id="custom_AllowedIP" value="{{.Peer.AllowedIPsStr}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-12">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="custom_DNS">Peer DNS Servers</label>
|
|
|
|
<input type="text" name="dns" class="form-control" id="custom_DNS" value="{{.Peer.DNSStr}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-6">
|
2021-04-03 13:11:05 -04:00
|
|
|
<label for="custom_PersistentKeepalive">Persistent Keepalive</label>
|
|
|
|
<input type="number" name="keepalive" class="form-control" id="custom_PersistentKeepalive" placeholder="16" value="{{.Peer.PersistentKeepalive}}">
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
2021-04-03 16:38:22 -04:00
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="custom_MTU">Client MTU</label>
|
2021-04-03 17:54:35 -04:00
|
|
|
<input type="number" name="mtu" class="form-control" id="custom_MTU" placeholder="0" value="{{.Peer.Mtu}}">
|
2021-04-03 16:38:22 -04:00
|
|
|
</div>
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-12">
|
2020-11-09 08:32:20 -05:00
|
|
|
<div class="custom-control custom-switch">
|
2021-04-03 13:11:05 -04:00
|
|
|
<input class="custom-control-input" name="isdisabled" type="checkbox" value="true" id="custom_Disabled" {{if .Peer.DeactivatedAt}}checked{{end}}>
|
|
|
|
<label class="custom-control-label" for="custom_Disabled">
|
2020-11-09 08:32:20 -05:00
|
|
|
Disabled
|
|
|
|
</label>
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
2020-11-09 08:32:20 -05:00
|
|
|
<div class="custom-control custom-switch">
|
2021-04-03 13:11:05 -04:00
|
|
|
<input class="custom-control-input" name="ignoreglobalsettings" type="checkbox" value="true" id="custom_IgnoreGlobalSettings" {{if .Peer.IgnoreGlobalSettings}}checked{{end}}>
|
|
|
|
<label class="custom-control-label" for="custom_IgnoreGlobalSettings">
|
|
|
|
Ignore global settings
|
2020-11-07 04:31:48 -05:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
|
|
<a href="/admin" class="btn btn-secondary">Cancel</a>
|
|
|
|
</form>
|
2021-04-03 13:11:05 -04:00
|
|
|
{{end}}
|
2020-11-07 04:31:48 -05:00
|
|
|
</div>
|
2020-11-10 03:31:02 -05:00
|
|
|
{{template "prt_footer.html" .}}
|
2020-11-07 04:31:48 -05:00
|
|
|
<script src="/js/jquery.min.js"></script>
|
|
|
|
<script src="/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<script src="/js/jquery.easing.js"></script>
|
|
|
|
<script src="/js/custom.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|