blob: 1945abe2381a7e9c62c2bccd2cb6c2200d24029e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Form } from "react-router-dom";
export default function Login() {
return (
<div>
<h1>Albatross.swift</h1>
<h2>
Login
</h2>
<Form method="post">
<label>Username</label>
<input type="text" name="username" />
<label>Password</label>
<input type="password" name="password" />
<button type="submit">Login</button>
</Form>
</div>
);
};
|