dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

chess-analyze.gohtml (446B)


      1 {{ define "title" }}dkf - chess{{ end }}
      2 
      3 {{ define "content" }}
      4     <div class="container">
      5         <form method="post">
      6             <input type="hidden" name="csrf" value="{{ .CSRF }}" />
      7             <div class="form-group">
      8                 <textarea name="pgn" placeholder="PGN" class="form-control">{{ .Data.Pgn }}</textarea>
      9             </div>
     10             <button class="btn btn-primary">Analyze</button>
     11         </form>
     12     </div>
     13 {{ end }}