rameshmoorthy commited on
Commit
c72ccf6
·
verified ·
1 Parent(s): adff838

Update home.py

Browse files
Files changed (1) hide show
  1. home.py +20 -55
home.py CHANGED
@@ -2,59 +2,24 @@ import streamlit as st
2
 
3
  def home():
4
  st.markdown("""
 
 
 
 
 
 
 
5
 
6
- # Face Recognition Web App
7
-
8
- A web application using face recognition in Python with Streamlit.
9
-
10
- ## Introduction
11
-
12
- This project utilizes the face recognition Python module to build a web app powered by Streamlit. It allows users to perform face recognition tasks interactively.
13
-
14
- ## Features
15
-
16
- - Face detection and recognition
17
- - Streamlit for a user-friendly web interface
18
-
19
- ## Installation
20
-
21
- 1. Clone the repository:
22
-
23
- ```bash
24
- git clone https://github.com/CrimsonREwind/face-recognition-web-app.git
25
- cd face_recognition
26
- ```
27
-
28
- 2. Install dependencies:
29
-
30
- ```bash
31
- pip install -r requirements.txt
32
- ```
33
-
34
- 3. Run the Streamlit app:
35
-
36
- ```bash
37
- streamlit run app.py
38
- ```
39
-
40
- Visit `http://localhost:8501` in your browser to access the web app.
41
-
42
- ## Usage
43
-
44
- - Open the web app in your browser.
45
- - You can use register page to register your face in database
46
- - You can use login page to see if user is registered or not
47
- - All the activities like login, register will be stored in log file
48
-
49
- ## Contributing
50
-
51
- Feel free to contribute to the project! If you find bugs, have feature requests, or want to improve the code, follow these steps:
52
-
53
- 1. Fork the repository.
54
- 2. Create a new branch: `git checkout -b feature/bugfix-your-feature`.
55
- 3. Commit your changes: `git commit -m 'Add some feature'`.
56
- 4. Push to the branch: `git push origin feature/bugfix-your-feature`.
57
- 5. Submit a pull request.
58
-
59
-
60
- """)
 
2
 
3
  def home():
4
  st.markdown("""
5
+ <style>
6
+ .title {
7
+ color: purple;
8
+ font-size: 30px;
9
+ }
10
+ </style>
11
+ """, unsafe_allow_html=True)
12
 
13
+ st.markdown("""
14
+ <h1 class="title">AI NANBAN</h1>
15
+ <p>A AI Personalised Coach application for CBSE Classs using face recognition.</p>
16
+ <h2>Introduction</h2>
17
+ <p>This project utilizes the face recognition Python module to build a web app powered by Streamlit. It allows users to perform face recognition tasks interactively.</p>
18
+ <h2>Features</h2>
19
+ <ul>
20
+ <li>Face detection and recognition of Students</li>
21
+ <li>Customised Quiz Generation for Students based on CBSE Class notes</li>
22
+ <li>Personalised Score tracking of students for progress tracking</li>
23
+ </ul>
24
+ <p>An Initiative by Koodapakkam school, Suggestions are Welcome to email id</p>
25
+ """, unsafe_allow_html=True)