Adnan083 commited on
Commit
2b4f46e
Β·
verified Β·
1 Parent(s): 75220a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -64
README.md CHANGED
@@ -1,69 +1,8 @@
1
- # app.py
2
  import streamlit as st
3
- from multipage import MultiPage
4
- from pages import teacher_page, student_page
5
 
6
- # Create an instance of the app
7
- app = MultiPage()
8
-
9
- # Title and description
10
- st.set_page_config(page_title="EduConnect", layout="wide")
11
-
12
- # Add an image to the homepage
13
  st.image("./images/education_banner.png", use_column_width=True)
14
 
15
- st.title("πŸ“š EduConnect: Platform for Teachers and Students")
16
- st.markdown("Empowering teachers and students with seamless collaboration and learning.")
17
-
18
- # Add pages to the app
19
- app.add_page("Teacher's Portal", teacher_page.app)
20
- app.add_page("Student's Hub", student_page.app)
21
-
22
- # Run the app
23
- app.run()
24
-
25
- # README.md
26
- ![EduConnect Banner](./images/education_banner.png)
27
-
28
- # EduConnect
29
- EduConnect is a platform designed to bridge the gap between teachers and students, offering seamless interaction, assignment management, and educational tools.
30
-
31
- ## Features
32
- - πŸ“‚ Upload and manage course materials
33
- - πŸ§‘β€πŸ« Teacher's Portal for assignments and monitoring
34
- - πŸŽ“ Student's Hub for accessing learning resources and submitting assignments
35
- - πŸ“Š Monitor progress and conduct quizzes
36
-
37
- ## How to Run
38
- 1. Clone the repository
39
- 2. Install dependencies:
40
- ```
41
- pip install -r requirements.txt
42
- ```
43
- 3. Run the app:
44
- ```
45
- streamlit run app.py
46
- ```
47
-
48
- ## Screenshots
49
- ### Homepage
50
- ![Homepage](./images/homepage.png)
51
-
52
- ### Teacher's Portal
53
- ![Teacher's Portal](./images/teacher_portal.png)
54
-
55
- ### Student's Hub
56
- ![Student's Hub](./images/student_hub.png)
57
-
58
- ## Requirements
59
- ```
60
- streamlit
61
- pandas
62
- numpy
63
- ```
64
 
65
- Ensure you have images stored in the `images` folder:
66
- - `education_banner.png` for the homepage
67
- - `homepage.png` for homepage screenshot
68
- - `teacher_portal.png` for teacher's portal screenshot
69
- - `student_hub.png` for student's hub screenshot
 
 
1
  import streamlit as st
 
 
2
 
3
+ def app():
4
+ st.title("πŸ‘©β€πŸ« Teacher's Portal")
5
+ st.write("Welcome to the teacher's portal!")
 
 
 
 
6
  st.image("./images/education_banner.png", use_column_width=True)
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8