Skip to content

Commit e8f6bc3

Browse files
committed
created new email page
created new email page
1 parent 562ae9f commit e8f6bc3

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

www/src/pages/secret.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
* create an input box
3+
* create a password andusername checker --
4+
* if correct send them the shit
5+
*/
6+
7+
import { type NextPage } from "next";
8+
import Head from "next/head";
9+
import Link from "next/link";
10+
import LandingPage from "./components/LandingPage";
11+
import NavBar from "./components/NavBar";
12+
import Blogs from "./components/Blogs";
13+
import { trpc } from "../utils/trpc";
14+
15+
const secret: NextPage = () => {
16+
return (
17+
<>
18+
<input
19+
type="password"
20+
required
21+
placeholder="password"
22+
className="block w-40 rounded-md border border-gray-300 px-5 py-3 text-base text-gray-900 placeholder-gray-500 shadow-sm focus:border-rose-500 focus:ring-rose-500">
23+
</input>
24+
<button>Submit</button>
25+
</>
26+
);
27+
};
28+
29+
export default secret;

0 commit comments

Comments
 (0)