aboutsummaryrefslogtreecommitdiff
path: root/static/nadmin.html
diff options
context:
space:
mode:
authorFChannel <>2022-06-19 12:47:32 -0700
committerFChannel <>2022-06-19 16:03:29 -0700
commitb02f813e519dc890f2eb4827ff52cff3ff90c828 (patch)
treed020fbdefda52542aab3f4250bf93533e9f38504 /static/nadmin.html
parentcd99df8d6781c3f0a191d119ea0ddf8c4a16089f (diff)
v0.1.0
Diffstat (limited to 'static/nadmin.html')
-rw-r--r--static/nadmin.html89
1 files changed, 0 insertions, 89 deletions
diff --git a/static/nadmin.html b/static/nadmin.html
deleted file mode 100644
index 8ee4800..0000000
--- a/static/nadmin.html
+++ /dev/null
@@ -1,89 +0,0 @@
-{{ define "title" }}{{ .Title }}{{ end }}
-{{ define "header" }} {{ end }}
-{{ define "top" }}{{ end }}
-{{ define "content" }}
-<div style="margin: 0 auto; width: 400px;">
- <h3>Add Board</h3>
- <form id="new-post" action="/{{ .Key }}/addboard" method="post" enctype="application/x-www-form-urlencoded">
- <label>Name:</label><br>
- <input type="text" name="name" placeholder="g" required><br>
- <label>Prefered Name:</label><br>
- <input type="text" name="prefname" placeholder="Technology" required><input type="submit" value="Add"><br>
- <label>Summary:</label><br>
- <textarea name="summary" rows="8" cols="50"></textarea><br>
- <label>Restricted (i.e SFW):</label><br>
- <select name="restricted">
- <option value="True">True</option>
- <option value="False">False</option>
- </select>
- </form>
- <ul style="display: inline-block; padding: 0;">
- <li style="display: inline-block;">[<a href="#news">Create News</a>]</li>
- <li style="display: inline-block;">[<a href="#regex">Post Blacklist</a>]</li>
- <!-- <li style="display: inline-block;"><a href="javascript:show('followers')">Followers</a></li> -->
- <!-- <li style="display: inline-block;"><a href="#reported">Reported</a></li> -->
- </ul>
-</div>
-
-
-<div id="following" class="box2" style="margin-bottom: 25px; padding: 12px;">
- <h4 style="margin: 0; margin-bottom: 5px;">Subscribed</h4>
- <form id="follow-form" action="/{{ .Key }}/follow" method="post" enctype="application/x-www-form-urlencoded">
- <input id="follow" name="follow" style="margin-bottom: 12px;" placeholder="http://localhost:3000/g"></input><input type="submit" value="Subscribe"><br>
- <input type="hidden" name="actor" value="{{ .Actor }}">
- </form>
- <ul style="display: inline-block; padding: 0; margin: 0; list-style-type: none;">
- {{ $actor := .Actor }}
- {{ $key := .Key }}
- {{ range .Following }}
- <li>[<a href="/{{ $key }}/follow?follow={{ . }}&actor={{ $actor }}">Unfollow</a>]<a href="{{ . }}">{{ . }}</a></li>
- {{ end }}
- </ul>
-</div>
-
-<div id="followers" class="box2" style="margin-bottom: 25px; padding: 12px; display:none;">
- <h4 style="margin: 0; margin-bottom: 5px;">Followers</h4>
- <ul style="display: inline-block; padding: 0; margin: 0; list-style-type: none;">
- {{ range .Followers }}
- <li><a href="http://localhost:3000/g">{{ . }}</a></li>
- {{ end }}
- </ul>
-</div>
-
-<div class="box2" style="margin-bottom: 25px; padding: 12px;">
- <h3>Create News</h3>
- <form id="news" action="/{{ .Key }}/postnews" method="post" enctype="application/x-www-form-urlencoded">
- <label>Title:</label><br>
- <input type="text" name="title" placeholder="New Board" required><input type="submit" value="Post"><br>
- <label>Content:</label><br>
- <textarea name="summary" rows="8" cols="50"></textarea><br>
- </form>
-</div>
-
-<div id="regex" class="box2" style="margin-bottom: 25px; padding: 12px;">
- <h3>Regex Post Blacklist</h3>
- <form id="blacklist" action="/blacklist" method="post" enctype="application/x-www-form-urlencoded">
- <label>Regex:</label><br>
- <input type="text" name="regex" placeholder="(?i)(?s)(.+)?stuff?(.+)to(.+)?block(.+)?https?://(.+)?" size="38" required><input style="margin-left: 5px;" type="submit" value="Post"><br>
- <label>Test Case:</label><br>
- <textarea name="testCase" rows="8" cols="50" placeholder="enter a test case to block, if it passes the regex will be added to the blacklist.&#10;&#10;(?i) for case insesitive &#10;(?s) to span multiple lines"></textarea><br>
- </form>
- {{ if .PostBlacklist }}
- <ul style="display: inline-block; padding: 0; margin: 0; margin-top: 25px; list-style-type: none;">
- {{ range .PostBlacklist }}
- <li>{{ .Regex }} [<a href="/blacklist?remove={{ .Id }}">remove</a>]</li>
- {{ end }}
- </ul>
- {{ end }}
-</div>
-
-<!-- <div id="reported" class="popup-box" style="margin-bottom: 25px; padding: 12px;"> -->
-<!-- <h4 style="margin: 0; margin-bottom: 5px;">Reported</h4> -->
-<!-- <ul style="display: inline-block; padding: 0; margin: 0; list-style-type: none;"> -->
-<!-- </ul> -->
-<!-- </div> -->
-{{ end }}
-{{ define "bottom" }}{{ end }}
-
-{{ define "script" }}
-{{ end }}