aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Login.js
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-07-25 12:44:24 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-07-25 12:44:24 +0530
commit34297348929e64cc2948f6b675d00674f8e3c347 (patch)
treefb001203cd33f17e6605a200a84ff65bee2738ad /src/components/Login.js
parent4f27eefd6ec24a2644e674850f5a2b5d4928b168 (diff)
downloadadmin-panel-34297348929e64cc2948f6b675d00674f8e3c347.tar.gz
admin-panel-34297348929e64cc2948f6b675d00674f8e3c347.tar.bz2
admin-panel-34297348929e64cc2948f6b675d00674f8e3c347.zip
added auth
Diffstat (limited to 'src/components/Login.js')
-rw-r--r--src/components/Login.js78
1 files changed, 44 insertions, 34 deletions
diff --git a/src/components/Login.js b/src/components/Login.js
index 620ece0..1b0a9ed 100644
--- a/src/components/Login.js
+++ b/src/components/Login.js
@@ -2,42 +2,52 @@ import React, { useState } from 'react';
import axios from 'axios';
function Login() {
- const [username, setUsername] = useState('');
- const [password, setPassword] = useState('');
- const [error, setError] = useState('');
+ const [username, setUsername] = useState('');
+ const [password, setPassword] = useState('');
+ const [error, setError] = useState('');
- const handleSubmit = async (event) => {
- event.preventDefault();
- try {
- const response = await axios.post('http://localhost:5000/login', {
- username,
- password,
- });
- console.log(response.data);
- // handle successful login, e.g., redirect to admin panel
- } catch (error) {
- setError('Invalid credentialas');
- console.error('Error logging in', error);
- }
- };
+ const handleSubmit = async (event) => {
+ event.preventDefault();
+ try {
+ const response = await axios.post('http://localhost:5000/login', {
+ username,
+ password,
+ });
+ console.log(response.data);
+ // handle successful login, e.g., redirect to admin panel
+ } catch (error) {
+ setError('Invalid credentials');
+ console.error('Error logging in', error);
+ }
+ };
- return (
- <div className="Login">
- <h2>Login</h2>
- {error && <p style={{ color: 'red' }}>{error}</p>}
- <form onSubmit={handleSubmit}>
- <div>
- <lable>Username:</lable>
- <input type="text" value={username} onChange={(e) => setUsername(e.target.value)} required />
- </div>
- <div>
- <lable>Password:</lable>
- <input type="password" value={password} onChange={(e) => setPassword(e.target.value)} required />
- </div>
- <button type="submit">Login</button>
- </form>
+ return (
+ <div className="Login">
+ <h2>Login</h2>
+ {error && <p style={{ color: 'red' }}>{error}</p>}
+ <form onSubmit={handleSubmit}>
+ <div>
+ <label>Username:</label>
+ <input
+ type="text"
+ value={username}
+ onChange={(e) => setUsername(e.target.value)}
+ required
+ />
</div>
- );
+ <div>
+ <label>Password:</label>
+ <input
+ type="password"
+ value={password}
+ onChange={(e) => setPassword(e.target.value)}
+ required
+ />
+ </div>
+ <button type="submit">Login</button>
+ </form>
+ </div>
+ );
}
-export default Login; \ No newline at end of file
+export default Login;