https://github.com/muhammadaziz01-dev/admin-dashboar
ADMIN-DASHBOAR
https://github.com/muhammadaziz01-dev/admin-dashboar
bootstrapicons css html5 javascript npm-package tailwind-css
Last synced: about 2 months ago
JSON representation
ADMIN-DASHBOAR
- Host: GitHub
- URL: https://github.com/muhammadaziz01-dev/admin-dashboar
- Owner: muhammadaziz01-dev
- Created: 2024-03-04T06:44:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-04T18:22:53.000Z (about 1 year ago)
- Last Synced: 2025-01-27T08:42:34.267Z (4 months ago)
- Topics: bootstrapicons, css, html5, javascript, npm-package, tailwind-css
- Language: JavaScript
- Homepage: https://65e610ff13a67e1e34f7567b--nimble-jalebi-4e8b1a.netlify.app/pages/login.html
- Size: 27.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Tailwind Starter
1. ``` npm init ```
2.
```
npm install -D tailwindcssnpx tailwindcss init
```3.
index.html
```
Hello world!
```
4. styles/style.css
```
@tailwind base;
@tailwind components;
@tailwind utilities;```
5. Configuration tailwind.config.js
tailwind.config.js
```
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./pages/**/*.html/"],
theme: {
extend: {},
},
plugins: [],
}```
6. watching pages
```
npx tailwindcss -i ./styles/index.css -o ./styles/output.css --watch```
## API DOCS :
#### Base URL :
https://fakestoreapi.com
### AND POINT :
- FOR AUTH :
/auth/login
User login
```
fetch('https://fakestoreapi.com/auth/login',{
method:'POST',
body:JSON.stringify({
username: "mor_2314",
password: "83r5^_"
})
})
.then(res=>res.json())
.then(json=>console.log(json))
```