Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohitchourey0809/yellow-owl-frontend
Enrollment registration student form leverages these technologies to create a modern and efficient web application for registering students in an educational institution. It provides a user-friendly interface for entering student information and integrates with a backend server to store and manage enrollment data.
https://github.com/rohitchourey0809/yellow-owl-frontend
axios chakraui reactjs
Last synced: about 16 hours ago
JSON representation
Enrollment registration student form leverages these technologies to create a modern and efficient web application for registering students in an educational institution. It provides a user-friendly interface for entering student information and integrates with a backend server to store and manage enrollment data.
- Host: GitHub
- URL: https://github.com/rohitchourey0809/yellow-owl-frontend
- Owner: rohitchourey0809
- Created: 2024-05-17T08:13:42.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-06T12:48:39.000Z (6 months ago)
- Last Synced: 2024-06-07T10:32:49.688Z (6 months ago)
- Topics: axios, chakraui, reactjs
- Language: TypeScript
- Homepage: https://yellow-owl-registrationform.vercel.app
- Size: 704 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Student form Assignment
![image](https://github.com/rohitchourey0809/yellow-owl-frontend/assets/97465195/067d3886-8a39-4c71-ba04-91998753ae05)
## API Reference
#### Get all items
```http
GET /students
```| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| `api_key` | `string` | **Required**. Your API key |#### Get item
```http
GET /students/${id}
```| Parameter | Type | Description |
| :-------- | :------- | :-------------------------------- |
| `id` | `string` | **Required**. Id of item to fetch |## API Reference
#### POST all items
```http
POST /students
```| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| `api_key` | `string` | **Required**. Your API key |#### POST item
```http
POST /students/${id}
```| Parameter | Type | Description |
| :-------- | :------- | :-------------------------------- |
| `id` | `string` | **Required**. Id of item to fetch |## API Reference
#### PUT all items
```http
PUT /students
```| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| `api_key` | `string` | **Required**. Your API key |#### DELETE item
```http
DELETE /students/${id}
```| Parameter | Type | Description |
| :-------- | :------- | :-------------------------------- |
| `id` | `string` | **Required**. Id of item to fetch |for frontend ``` npm start ```
for backend ``` npm run dev ```
```
Frontend repo
https://github.com/rohitchourey0809/yellow-owl-registrationform```
```
backend repo
https://github.com/rohitchourey0809/Backend-yellow-owl```