|
|
@ -6,50 +6,60 @@ |
|
|
|
<!-- CSS only --> |
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> |
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/index.css"> |
|
|
|
<link rel="stylesheet" type="text/css" href="/css/common.css"> |
|
|
|
<link rel="stylesheet" type="text/css" href="/css/configure.css"> |
|
|
|
</head> |
|
|
|
<body> |
|
|
|
<!-- <div class="main container"> |
|
|
|
<div class="main container"> |
|
|
|
<div class="card w-100"> |
|
|
|
<div class="card-body"> |
|
|
|
<div id="header"> |
|
|
|
<h1 class="card-title font-weight-bold">Captain Hook</h1> |
|
|
|
<h1 class="card-title font-weight-bold">Edit {{.Name}}</h1> |
|
|
|
<h5 class="card-subtitle text-muted"> |
|
|
|
A webhook server written in Go. |
|
|
|
The configuration page for your hook |
|
|
|
</h5> |
|
|
|
</div> |
|
|
|
<h2>Create Hook</h2> |
|
|
|
<div class="input-group"> |
|
|
|
<input class="form-control" type="text" name="create"> |
|
|
|
<div class="input-group-append"> |
|
|
|
<button type="submit" class="btn btn-success">Create</button> |
|
|
|
<div class="body"> |
|
|
|
<div class="conditions"> |
|
|
|
<h2 class="card-title font-weight-bold"> |
|
|
|
Conditions |
|
|
|
</h2> |
|
|
|
<div class="dropdown"> |
|
|
|
<button class="btn btn-success dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> |
|
|
|
Add Condition |
|
|
|
</button> |
|
|
|
<div class="dropdown-menu" aria-labelledby="dropdownMenu2"> |
|
|
|
<button class="dropdown-item" type="button">Method</button> |
|
|
|
<button class="dropdown-item" type="button">Header</button> |
|
|
|
<button class="dropdown-item" type="button">Parameter</button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="actions"> |
|
|
|
<h2 class="card-title font-weight-bold"> |
|
|
|
Actions |
|
|
|
</h2> |
|
|
|
<div class="dropdown"> |
|
|
|
<button class="btn btn-success dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> |
|
|
|
Add Action |
|
|
|
</button> |
|
|
|
<div class="dropdown-menu" aria-labelledby="dropdownMenu2"> |
|
|
|
<button class="dropdown-item" type="button">Write</button> |
|
|
|
<button class="dropdown-item" type="button">Shell</button> |
|
|
|
<button class="dropdown-item" type="button">Web Request</button> |
|
|
|
<button class="dropdown-item" type="button">Network Connection</button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
{{if . -}} |
|
|
|
<h2>Currently available hooks</h2> |
|
|
|
<ul class="list-group hooks"> |
|
|
|
{{range . -}} |
|
|
|
<li class="list-group-item "> |
|
|
|
<span class="hook-text">{{.Name}}</span> |
|
|
|
<button type="submit" class="btn btn-primary" id="modify-{{.Name}}">Modify</button> |
|
|
|
<button type="submit" class="btn btn-danger" id="delete-{{.Name}}">Delete</button> |
|
|
|
</li> |
|
|
|
{{- end}} |
|
|
|
</ul> |
|
|
|
{{- else}} |
|
|
|
<h2>No hooks currently exist</h2> |
|
|
|
{{- end}} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> --> |
|
|
|
<p>This page is under construction</p> |
|
|
|
|
|
|
|
<!-- Bootstrap JS --> |
|
|
|
<!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> --> |
|
|
|
<!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script> --> |
|
|
|
|
|
|
|
<script src="/js/index.js"></script> |
|
|
|
|
|
|
|
<!-- Bootstrap JS --> |
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> |
|
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> |
|
|
|
|
|
|
|
<script src="/js/index.js"></script> |
|
|
|
</body> |
|
|
|
</html> |