File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
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 ;
You can’t perform that action at this time.
0 commit comments