Compare commits
2 commits
2ae8f6b58d
...
459d168716
| Author | SHA1 | Date | |
|---|---|---|---|
| 459d168716 | |||
| 0ccf781fad |
3 changed files with 44 additions and 10 deletions
|
|
@ -35,6 +35,7 @@
|
|||
<a href="https://www.openstreetmap.org/node/2869212621"><h5 class="fontS">Open Map</h5></a>
|
||||
</div>
|
||||
</div>
|
||||
<a href="/rsvp.html">
|
||||
<div class="rsvpButton textCenter backgroundLightGreen hidden">
|
||||
<p class="colorBlack">
|
||||
R <br/>
|
||||
|
|
@ -43,6 +44,7 @@
|
|||
P <br/>
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
<script src="rsvp.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
29
client/rsvp.html
Normal file
29
client/rsvp.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="title fontXL textCenter backgroundLightGreen colorWhite">Collin and Lucy's Wedding</h1>
|
||||
<div class="contents fontM">
|
||||
<form action="/rsvp" method="post">
|
||||
<p>
|
||||
<label for="name-0">Name:</label>
|
||||
<input type="text" id="name-0" name="name"/>
|
||||
</p>
|
||||
<p>
|
||||
Age:
|
||||
<label for="age-child-0">Child</label>
|
||||
<input type="radio" id="age-child-0" name="child" value="true"/>
|
||||
<label for="age-adult-0">Adult</label>
|
||||
<input type="radio" id="age-adult-0" name="child" value="false"/>
|
||||
</p>
|
||||
<p>
|
||||
<label for="diet-0">Dietary preferences:</label>
|
||||
<textarea id="diet-0" name="dietaryPreferences"></textarea>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
<script src="rsvp.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -3,8 +3,11 @@ module collinenlucy.nl
|
|||
go 1.24.4
|
||||
|
||||
require (
|
||||
github.com/AnthonyHewins/gotfy v0.0.10 // indirect
|
||||
github.com/AnthonyHewins/gotfy v0.0.10
|
||||
github.com/mattn/go-sqlite3 v1.14.28
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/DATA-DOG/go-sqlmock v1.5.2 // indirect
|
||||
github.com/goccy/go-json v0.10.2 // indirect
|
||||
github.com/mattn/go-sqlite3 v1.14.28 // indirect
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue