Compare commits
No commits in common. "026f0c9d2a2654b06b7767bf091333dd68873cc0" and "dcd480b043bd0068193b301f4e5965b647de35a7" have entirely different histories.
026f0c9d2a
...
dcd480b043
6 changed files with 7 additions and 15 deletions
|
|
@ -2,6 +2,6 @@ function login() {
|
|||
const usernameInput = document.getElementById('username');
|
||||
const passwordInput = document.getElementById('password');
|
||||
|
||||
const credentials = `${usernameInput.value}:${passwordInput.value}`;
|
||||
document.cookie = `credentials=${credentials}; path=/`;
|
||||
const token = btoa(`${usernameInput.value}:${passwordInput.value}`);
|
||||
document.cookie = `token=${String(token)}; path=/`;
|
||||
}
|
||||
|
|
@ -30,7 +30,7 @@ function createNewMember(id) {
|
|||
childInput.type = "checkbox";
|
||||
childInput.id = `child-${id}`;
|
||||
childInput.name = `child-${id}`;
|
||||
childInput.style = "font-size: 1rem";
|
||||
childInput.style = 'font-size: 1rem';
|
||||
|
||||
const childInputDiv = document.createElement("div");
|
||||
childInputDiv.classList.add("fill-right");
|
||||
|
|
@ -40,18 +40,15 @@ function createNewMember(id) {
|
|||
childDiv.appendChild(childLabel);
|
||||
childDiv.appendChild(childInputDiv);
|
||||
|
||||
const dietDiv = document.createElement("div");
|
||||
dietDiv.style = "flex-direction: column;";
|
||||
const dietDiv = document.createElement("p");
|
||||
|
||||
const dietLabel = document.createElement("label");
|
||||
dietLabel.htmlFor = `diet-${id}`;
|
||||
dietLabel.innerHTML = "Dietary preferences:";
|
||||
dietLabel.style = "flex:1;";
|
||||
|
||||
const dietInput = document.createElement("textarea");
|
||||
dietInput.id = `diet-${id}`;
|
||||
dietInput.name = `dietaryPreferences-${id}`;
|
||||
dietInput.style = "flex:1;"
|
||||
|
||||
dietDiv.appendChild(dietLabel);
|
||||
dietDiv.appendChild(dietInput);
|
||||
|
|
|
|||
|
|
@ -6,9 +6,6 @@
|
|||
<body>
|
||||
<h1 class="title fontXL textCenter backgroundLightGreen colorWhite">Collin and Lucy's Wedding</h1>
|
||||
<div class="contents">
|
||||
<table id="rsvpsTable">
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<script src="/rsvps_list.js"></script>
|
||||
</body>
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ function createRsvpEntry(rsvp) {
|
|||
const newRow = document.createElement('tr');
|
||||
|
||||
const attendingColumn = document.createElement('td');
|
||||
attendingColumn.innerText = attending ? '\u2705' : '\u274C';
|
||||
attendingColumn.innerText = attending ? '✅' : '❌';
|
||||
|
||||
const nameColumn = document.createElement('td');
|
||||
nameColumn.innerText = member.name;
|
||||
|
||||
const childColumn = document.createElement('td');
|
||||
childColumn.innerText = member.child ? '\u{1F476}' : '\u{1F474}';
|
||||
childColumn.innerText = member.child ? '👶' : '🧓';
|
||||
|
||||
const dietaryPreferencesColumn = document.createElement('td');
|
||||
dietaryPreferencesColumn.innerText = member.dietaryPreferences.length > 0 ? member.dietaryPreferences : 'n/a';
|
||||
|
|
@ -32,7 +32,7 @@ async function getRsvps() {
|
|||
const token = Object.fromEntries(
|
||||
document.cookie.split(";").map((x) => x.trim().split("="))
|
||||
)['token']
|
||||
const resp = await fetch('/api/rsvps', { headers: { 'Authorization': `Basic ${String(btoa(token))}`} });
|
||||
const resp = await fetch('/api/rsvps', { headers: { 'Authorization': `Basic ${token}`} });
|
||||
const rsvps = await resp.json()
|
||||
for (const rsvp of rsvps) {
|
||||
createRsvpEntry(rsvp);
|
||||
|
|
|
|||
|
|
@ -227,7 +227,6 @@ form#rsvps div.members div.member {
|
|||
form#rsvps div.members div.member div {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
form#rsvps div.members div.member div.separator {
|
||||
|
|
|
|||
|
|
@ -63,7 +63,6 @@ func (h *Handler) getRsvps(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
w.Header().Add("Content-Type", "application/json")
|
||||
w.WriteHeader(http.StatusOK)
|
||||
fmt.Fprintf(w, "%s", marshalledRsvps)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue