Skip to content

Commit db5aa3c

Browse files
authored
Merge pull request #154 from akakou/hotfix/showing-contents
Hotfix/showing contents
2 parents fcac1a3 + a6d84ad commit db5aa3c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

ta/example/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ func main() {
2323
handler := func(w http.ResponseWriter, r *http.Request) {
2424
w.Header().Set("Content-Type", "text/html")
2525

26-
fmt.Fprintln(w, "Hello from TA running on TEE :)")
26+
fmt.Fprintln(w, "Hello from TA running on TEE :)<br/>")
2727

2828
for _, v := range config.Verifiers {
29-
fmt.Fprintf(w, `<button onclick="window.open('%s');">Verifier Page (%s)</button><br>`, v+VERIFIER_PATH, v)
29+
fmt.Fprintf(w, `<button onclick="window.open('%s');">Verifier Page (%s)</button><br/>`, v+VERIFIER_PATH, v)
3030
}
3131
}
3232

verifier/serv/static/js/ui/app.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ const App = () => {
3939
<h3>Message: </h3>
4040
<p>{message}</p>
4141

42-
<label for="autoredirect">Do not redirect back automatically</label>
43-
44-
4542
<br />
4643

4744
<h2>Logs</h2>

0 commit comments

Comments
 (0)