-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
user can manage own peers on default device (#82)
Co-authored-by: GitHubActionRunner <[email protected]>
- Loading branch information
1 parent
b34d2e1
commit 2f19488
Showing
9 changed files
with
251 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!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> | ||
|
||
<body id="page-top" class="d-flex flex-column min-vh-100"> | ||
{{template "prt_nav.html" .}} | ||
<div class="container mt-5"> | ||
{{template "prt_flashes.html" .}} | ||
|
||
<!-- server mode --> | ||
<h1>Create a new client</h1> | ||
|
||
<form method="post" enctype="multipart/form-data"> | ||
<input type="hidden" name="_csrf" value="{{.Csrf}}"> | ||
<input type="hidden" name="uid" value="{{.Peer.UID}}"> | ||
<div class="form-row"> | ||
<div class="form-group required col-md-12"> | ||
<label for="server_PublicKey">Public Key</label> | ||
<input type="text" name="pubkey" class="form-control" id="server_PublicKey" value="{{.Peer.PublicKey}}" required> | ||
</div> | ||
</div> | ||
|
||
<button type="submit" class="btn btn-primary">Save</button> | ||
<a href="/user/profile" class="btn btn-secondary">Cancel</a> | ||
</form> | ||
</div> | ||
{{template "prt_footer.html" .}} | ||
<script src="/js/jquery.min.js"></script> | ||
<script src="/js/jquery.easing.js"></script> | ||
<script src="/js/popper.min.js"></script> | ||
<script src="/js/bootstrap.bundle.min.js"></script> | ||
<script src="/js/bootstrap-confirmation.min.js"></script> | ||
<script src="/js/custom.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!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> | ||
|
||
<body id="page-top" class="d-flex flex-column min-vh-100"> | ||
{{template "prt_nav.html" .}} | ||
<div class="container mt-5"> | ||
{{template "prt_flashes.html" .}} | ||
|
||
<!-- server mode --> | ||
<h1>Edit client: <strong>{{.Peer.Identifier}}</strong></h1> | ||
|
||
<form method="post" enctype="multipart/form-data"> | ||
<input type="hidden" name="_csrf" value="{{.Csrf}}"> | ||
<input type="hidden" name="uid" value="{{.Peer.UID}}"> | ||
<div class="form-row"> | ||
<div class="form-group required col-md-12"> | ||
<label for="server_PublicKey">Public Key</label> | ||
<input type="text" name="pubkey" class="form-control" id="server_PublicKey" value="{{.Peer.PublicKey}}" required disabled="disabled"> | ||
</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="server_Disabled" {{if .Peer.DeactivatedAt}}disabled="disabled"{{end}} {{if .Peer.DeactivatedAt}}checked{{end}}> | ||
<label class="custom-control-label" for="server_Disabled"> | ||
Disabled | ||
</label> | ||
</div> | ||
</div> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Save</button> | ||
<a href="/user/profile" class="btn btn-secondary">Cancel</a> | ||
</form> | ||
</div> | ||
{{template "prt_footer.html" .}} | ||
<script src="/js/jquery.min.js"></script> | ||
<script src="/js/jquery.easing.js"></script> | ||
<script src="/js/popper.min.js"></script> | ||
<script src="/js/bootstrap.bundle.min.js"></script> | ||
<script src="/js/bootstrap-confirmation.min.js"></script> | ||
<script src="/js/custom.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters