dkforest

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

chat-delete.gohtml (678B)


      1 {{ define "content" }}
      2 
      3 <div class="container">
      4 
      5     <nav aria-label="breadcrumb">
      6         <ol class="breadcrumb">
      7             <li class="breadcrumb-item"><a href="/chat/{{ .Data.Room.Name }}">{{ .Data.Room.Name }}</a></li>
      8             <li class="breadcrumb-item active">{{ t "Delete" . }}</li>
      9         </ol>
     10     </nav>
     11 
     12     <form method="post">
     13         <input type="hidden" name="csrf" value="{{ .CSRF }}" />
     14         <p>Are you sure you want to delete the room "{{ .Data.Room.Name }}" ?</p>
     15         <button class="btn btn-danger" type="submit">Delete room</button>
     16         <a href="/chat/{{ .Data.Room.Name }}" class="btn btn-secondary">Cancel</a>
     17     </form>
     18 </div>
     19 
     20 {{ end }}