aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/teams/New.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/routes/teams/New.tsx')
-rw-r--r--frontend/src/routes/teams/New.tsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/frontend/src/routes/teams/New.tsx b/frontend/src/routes/teams/New.tsx
new file mode 100644
index 0000000..2712cd5
--- /dev/null
+++ b/frontend/src/routes/teams/New.tsx
@@ -0,0 +1,19 @@
+import { Form } from "react-router-dom";
+
+export default function New() {
+ return (
+ <div>
+ <h1>Albatross.swift</h1>
+ <h2>
+ Team New
+ </h2>
+ <Form method="post">
+ <label>Team name</label>
+ <input type="text" name="name" />
+ <label>Icon</label>
+ <input type="text" name="icon" disabled />
+ <button type="submit">Create</button>
+ </Form>
+ </div>
+ );
+};