world.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {{define "worldlobby"}}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>worlds</title>
  7. </head>
  8. <body>
  9. <h1> worlds </h1><br>
  10. <h2> current Worlds </h2><br>
  11. <table style="width:100%">
  12. <tr>
  13. <th>World</th>
  14. <th>Users</th>
  15. <th></th>
  16. </tr>
  17. {{range $world:= .Worlds }}
  18. <tr>
  19. <td>{{$world.GetName}}</td>
  20. <td>{{range $user:= $world.GetUsers}}{{$user.Name}} {{end}}</td>
  21. <form method="post" action="world/join" id="join"> <input type="hidden" name="worldname" value="{{$world.Name}}" > <button type="submit">Join</button></form>
  22. </tr>
  23. {{end}}
  24. </table>
  25. <hr>
  26. <h2> new World </h2>
  27. <form method="post" action="world" id="newworld">
  28. <label class="h2" form="newworld">Create World</label><br>
  29. <label for="worldname">worldname</label>
  30. <input type="text" name="worldname" id="worldname" maxlength="30"><br>
  31. <button type="submit">create World</button><br>
  32. </form>
  33. </body>
  34. </html>
  35. {{end}}