dkforest

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

home.gohtml (1039B)


      1 {{ define "title" }}dkf - vip{{ end }}
      2 
      3 {{ define "sub-content" }}
      4 
      5 <h3>VIP section</h3>
      6 <p>Welcome to the VIP section</p>
      7 
      8 <p>
      9     <a href="/vip/challenges/byte-road">ByteRoad captcha challenge</a><br />
     10     <a href="/vip/challenges/re-1">Reverse Engineering Challenge #1</a><br />
     11     <a href="/vip/challenges/stego1">Stego #1</a><br />
     12     <a href="/vip/challenges/forgot-password-bypass">Forgot-password bypass challenge</a><br />
     13 </p>
     14 
     15 <hr />
     16 
     17 <div>
     18     <h4>Challenges Leaderboard</h4>
     19     <table class="table table-hover table-sm table-novpadding table-striped">
     20         <tr>
     21             <th>Challenge</th>
     22             <th>User</th>
     23             <th>Date</th>
     24         </tr>
     25         {{ range .Data.UsersBadges }}
     26             <tr>
     27                 <td>{{ .Badge.Name }}</td>
     28                 <td><a {{ .User.GenerateChatStyle | attr }} href="/u/{{ .User.Username }}">{{ .User.Username }}</a></td>
     29                 <td>{{ .CreatedAt.Format "Jan 02, 2006 - 15:04:05" }}</td>
     30             </tr>
     31         {{ end }}
     32     </table>
     33 </div>
     34 
     35 {{ end }}