aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/Register.jsx
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-07-25 22:54:55 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-07-25 22:54:55 +0530
commit680f38b1c48c4cc5c4b34b285f68fe48217d0ab9 (patch)
tree6cb3bdbf246636625b34fec022bf6619d24f8c01 /src/pages/Register.jsx
parent458a8c849da82adf045a40919a4a9e3aa06e1c06 (diff)
downloadadmin-panel-680f38b1c48c4cc5c4b34b285f68fe48217d0ab9.tar.gz
admin-panel-680f38b1c48c4cc5c4b34b285f68fe48217d0ab9.tar.bz2
admin-panel-680f38b1c48c4cc5c4b34b285f68fe48217d0ab9.zip
setting up login
Diffstat (limited to 'src/pages/Register.jsx')
-rw-r--r--src/pages/Register.jsx21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/pages/Register.jsx b/src/pages/Register.jsx
new file mode 100644
index 0000000..84c0bf2
--- /dev/null
+++ b/src/pages/Register.jsx
@@ -0,0 +1,21 @@
+import React from 'react';
+
+const Register = () => {
+ const handleRegister = (e) => {
+ e.preventDefault();
+ // Handle registration logic here
+ };
+
+ return (
+ <div>
+ <h1>Register</h1>
+ <form onSubmit={handleRegister}>
+ <input type="text" placeholder="Username" />
+ <input type="password" placeholder="Password" />
+ <button type="submit">Register</button>
+ </form>
+ </div>
+ );
+};
+
+export default Register;