diff --git a/wwwroot/app.js b/wwwroot/app.js
index c1add84..2490b7a 100644
--- a/wwwroot/app.js
+++ b/wwwroot/app.js
@@ -52,9 +52,6 @@ async function loadState() {
if (nameInput && !nameInput.dataset.userEditing) {
nameInput.value = me.displayName || "";
}
- if ($("player-id")) {
- $("player-id").textContent = `Player ID: ${me.id}`;
- }
applyNameRequirementUI();
}
diff --git a/wwwroot/index.html b/wwwroot/index.html
index 82576ce..ef8a308 100644
--- a/wwwroot/index.html
+++ b/wwwroot/index.html
@@ -11,20 +11,17 @@
Loading…
—
+
+
+
+
+ Name required
+
-
-
Your Name
-
-
-
-
Suggest (up to 3)
Only you can see your suggestions until Reveal.
diff --git a/wwwroot/styles.css b/wwwroot/styles.css
index 83306d8..a465e74 100644
--- a/wwwroot/styles.css
+++ b/wwwroot/styles.css
@@ -34,6 +34,19 @@ body {
font-size: 13px;
}
+.inline-name {
+ display: flex;
+ align-items: center;
+ gap: 8px;
+ margin-left: auto;
+}
+.inline-name input {
+ width: 160px;
+}
+.inline-name .hint {
+ margin: 0;
+}
+
.grid {
display: grid;
grid-template-columns: 1fr;