Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions templates/server.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ <h3 class="card-title">Interface</h3>
</div>
<div class="form-group">
<label for="post_up">Post Up Script</label>
<input type="text" class="form-control" id="post_up" name="post_up"
placeholder="Post Up Script" value="{{ .serverInterface.PostUp }}">
<textarea class="form-control" id="post_up" name="post_up"
placeholder="Post Up Script">{{ .serverInterface.PostUp }}</textarea>
</div>
<div class="form-group">
<label for="pre_down">Pre Down Script</label>
Expand All @@ -50,8 +50,8 @@ <h3 class="card-title">Interface</h3>

<div class="form-group">
<label for="post_down">Post Down Script</label>
<input type="text" class="form-control" id="post_down" name="post_down"
placeholder="Post Down Script" value="{{ .serverInterface.PostDown }}">
<textarea class="form-control" id="post_down" name="post_down"
placeholder="Post Down Script">{{ .serverInterface.PostDown }}</textarea>
</div>
</div>
<!-- /.card-body -->
Expand Down