[
  {
    "path": "CRCE Bot/app.py",
    "content": "from chatbot import chatbot\nfrom flask import Flask, render_template, request,session,logging,url_for,redirect,flash\nfrom flask_recaptcha import ReCaptcha\nimport mysql.connector\nimport os\n\napp = Flask(__name__)\nrecaptcha = ReCaptcha(app=app)\napp.secret_key=os.urandom(24)\napp.static_folder = 'static'\n\n\napp.config.update(dict(\n    RECAPTCHA_ENABLED = True,\n    RECAPTCHA_SITE_KEY = \"6LdbAx0aAAAAAANl04WHtDbraFMufACHccHbn09L\",\n    RECAPTCHA_SECRET_KEY = \"6LdbAx0aAAAAAMmkgBKJ2Z9xsQjMD5YutoXC6Wee\"\n))\n\nrecaptcha=ReCaptcha()\nrecaptcha.init_app(app)\n\napp.config['SECRET_KEY'] = 'cairocoders-ednalan'\n\n#database connectivity\nconn=mysql.connector.connect(host='localhost',port='3306',user='root',password='candida1',database='register')\ncur=conn.cursor()\n\n# Google recaptcha - site key : 6LdbAx0aAAAAAANl04WHtDbraFMufACHccHbn09L\n# Google recaptcha - secret key : 6LdbAx0aAAAAAMmkgBKJ2Z9xsQjMD5YutoXC6Wee\n\n@app.route(\"/index\")\ndef home():\n    if 'id' in session:\n        return render_template('index.html')\n    else:\n        return redirect('/')\n\n\n@app.route('/')\ndef login():\n    return render_template(\"login.html\")\n\n@app.route('/register')\ndef about():\n    return render_template('register.html')\n\n@app.route('/forgot')\ndef forgot():\n    return render_template('forgot.html')\n\n@app.route('/login_validation',methods=['POST'])\ndef login_validation():\n    email=request.form.get('email')\n    password=request.form.get('password')\n\n    cur.execute(\"\"\"SELECT * FROM `users` WHERE `email` LIKE '{}' AND `password` LIKE '{}'\"\"\".format(email,password))\n    users = cur.fetchall()\n    if len(users)>0:\n        session['id']=users[0][0]\n        flash('You were successfully logged in')\n        return redirect('/index')\n    else:\n        flash('Invalid credentials !!!')\n        return redirect('/')\n    # return \"The Email is {} and the Password is {}\".format(email,password)\n    # return render_template('register.html')\n\n@app.route('/add_user',methods=['POST'])\ndef add_user():\n    name=request.form.get('name') \n    email=request.form.get('uemail')\n    password=request.form.get('upassword')\n\n    #cur.execute(\"UPDATE users SET password='{}'WHERE name = '{}'\".format(password, name))\n    cur.execute(\"\"\"INSERT INTO  users(name,email,password) VALUES('{}','{}','{}')\"\"\".format(name,email,password))\n    conn.commit()\n    cur.execute(\"\"\"SELECT * FROM `users` WHERE `email` LIKE '{}'\"\"\".format(email))\n    myuser=cur.fetchall()\n    flash('You have successfully registered!')\n    session['id']=myuser[0][0]\n    return redirect('/index')\n\n@app.route('/suggestion',methods=['POST'])\ndef suggestion():\n    email=request.form.get('uemail')\n    suggesMess=request.form.get('message')\n\n    cur.execute(\"\"\"INSERT INTO  suggestion(email,message) VALUES('{}','{}')\"\"\".format(email,suggesMess))\n    conn.commit()\n    flash('You suggestion is succesfully sent!')\n    return redirect('/index')\n\n@app.route('/add_user',methods=['POST'])\ndef register():\n    if recaptcha.verify():\n        flash('New User Added Successfully')\n        return redirect('/register')\n    else:\n        flash('Error Recaptcha') \n        return redirect('/register')\n\n\n@app.route('/logout')\ndef logout():\n    session.pop('id')\n    return redirect('/')\n\n@app.route(\"/get\")\ndef get_bot_response():\n    userText = request.args.get('msg')  \n    return str(chatbot.get_response(userText))\n\nif __name__ == \"__main__\":\n    # app.secret_key=\"\"\n    app.run() \n"
  },
  {
    "path": "CRCE Bot/chatbot.py",
    "content": "from chatterbot import ChatBot\nfrom chatterbot.trainers import ListTrainer\nimport spacy\nspacy.load('en_core_web_sm')\n# from spacy.lang.en import English\nfrom chatterbot.trainers import ChatterBotCorpusTrainer\n\n# Creating ChatBot Instance\nchatbot = ChatBot('<b>CRCE BOT</b>')\n\n# nlp = spacy.load(\"en_core_web_sm\")\n\nchatbot = ChatBot(\n    'ChatBot for College Enquiry',\n    storage_adapter='chatterbot.storage.SQLStorageAdapter',\n    logic_adapters=[\n        {\n            'import_path': 'chatterbot.logic.BestMatch',\n            'default_response': \"Hi there, Welcome to Fr. CRCE! 👋 If you need any assistance, I'm always here.Go ahead and write the number of any query. 😃✨<b><br><br>  Which of the following user groups do you belong to? <br><br>1.&emsp;Student's Section Enquiry.</br>2.&emsp;Faculty Section Enquiry. </br>3.&emsp;Parent's Section Enquiry.</br>4.&emsp;Visitor's Section Enquiry.</br><br>\",\n            'maximum_similarity_threshold': 0.90\n        }\n    ],\n    database_uri='sqlite:///database.sqlite3'   \n) \ntrainer = ListTrainer(chatbot)\n\n# python app.py\n# Training with Personal Ques & Ans \nconversation = [\n\"Hi\",\n\"Helloo!\",\n\"Hey\",\n\n\"How are you?\",\n\"I'm good.</br> <br>Go ahead and write the number of any query. 😃✨ <br> 1.&emsp;Student's Section Enquiry.</br>2.&emsp;Faculty Section Enquiry. </br>3.&emsp;Parent's Section Enquiry.</br>4.&emsp;Visitor's Section Enquiry.</br>\",\n\n\"Great\",\n\"Go ahead and write the number of any query. 😃✨ <br> 1.&emsp;Student's Section Enquiry.</br>2.&emsp;Faculty Section Enquiry. </br>3.&emsp;Parent's Section Enquiry.</br>4.&emsp;Visitor's Section Enquiry.</br>\",\n\n\"good\",\n\"Go ahead and write the number of any query. 😃✨ <br> 2.&emsp;Faculty Section Enquiry. </br>3.&emsp;Parent's Section Enquiry.</br>4.&emsp;Visitor's Section Enquiry.</br>\",\n\n\"fine\",\n\"Go ahead and write the number of any query. 😃✨ <br> 2.&emsp;Faculty Section Enquiry. </br>3.&emsp;Parent's Section Enquiry.</br>4.&emsp;Visitor's Section Enquiry.</br>\",\n\n\"Thank You\",\n\"Your Welcome 😄\",\n\n\"Thanks\",\n\"Your Welcome 😄\",\n\n\"Bye\",\n\"Thank You for visiting!..\",\n\n\"What do you do?\",\n\"I am made to give Information about Fr. CRCE college.\",\n\n\"What else can you do?\",\n\"I can help you know more about Fr. CRCE\",\n    \n    \"1\",\n    \"<b>STUDENT <br>The following are frequently searched terms related to student . Please select one from the options below : <br> <br> 1.1 Curriculars <br>1.2  Extra-Curriculars<br>1.3  Administrative<br>1.4 Examination <br>1.5 Placements </b>\",\n    \n    \"1.1\",\n    \"<b>  CURRICULAR <br>  These are the top results: <br> <br> 1.1.1 Moodle <br> 1.1.2 Academic Calendar <br> 1.1.3 Syllabus </b>\",\n    \"1.1.1\",\n    \"<b> 1.1.1 Moodle <br>The link to Moodle 👉 <a href=\" 'http://gyan.fragnel.edu.in:2222/moodle/' \">Click Here</a> </b>\",\n    \"1.1.2\",\n    \"<b > 1.1.2 Academic Calender<br>The link to Academic Calender👉<a href=\" 'http://www.frcrce.ac.in/index.php/academics/academic-calendar' \">Click Here</a> </b>\",\n    \"1.1.3\",\n    \"<b> 1.1.3 Syllabus<br>The link to Syllabus 👉 <a href=\" 'http://www.frcrce.ac.in/index.php/academics/tlp/syllabus' \">Click Here</a> </b>\",\n\n    \"1.2\",\n    \"<b>EXTRA-CURRICULAR<br>These are the top results: <br> <br> 1.2.1 Events<br> 1.2.2 Student Chapters <br> 1.2.3 Student's Council</b>\",\n    \"1.2.1\",\n    \"<b > 1.2.1 Events<br>The link to Events👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/events-new' \">Click Here</a></b>\",\n    \"1.2.2\",\n    \"<b > 1.2.2 Student Chapters<br>The link to Student Chapters👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/forums' \">Click Here</a> </b>\",\n    \"1.2.3\",\n    \"<b > 1.2.3 Student's Council <br>The link to Student's Council👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/students-council' \">Click Here</a> </b>\",\n\n    \"1.3\",\n    \"<b>1.3 ADMINISTRATIVE<br>These are the top results: <br> <br> 1.3.1 Students Portal<br> 1.3.2 Notices </b>\",\n    \"1.3.1\",\n    \"<b> 1.3.1 Students Portal<br>The link to Students Portal👉 <a href=\" 'http://granth.fragnel.edu.in:5186/pinfo/index.php' \">Click Here</a> </b>\",\n    \"1.3.2\",\n    \"<b> 1.3.2 Notices<br>The link to Notices👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices/109-office-administration' \">Click Here</a> </b>\",\n\n    \"1.4\",\n    \"<b > EXAMINATION <br>These are the top results:<br> 1.4.1 Notices<br> 1.4.2 Examination Process <br> 1.4.3 Question Paper Archive </b>\",\n    \"1.4.1\",\n    \"<b > 1.4.1 Notices<br>The link to Notices👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices/110-examsection' \">Click Here</a> </b>\",\n    \"1.4.2\",\n    \"<b > 1.4.2 Examination Process<br>The link to Examination Process👉<a href=\" 'http://www.frcrce.ac.in/index.php/academics/examination/exam-process' \">Click Here</a> </b>\",\n    \"1.4.3\",\n    \"<b > 1.4.3 Question Paper Archive<br>The link to Archives👉 <a href=\" 'http://www.frcrce.ac.in/questionpaper/ArchUE.php' \">Click Here</a> </b>\",\n\n    \"1.5\",\n    \"<b > PLACEMENTS These are the top results:<br> 1.5.1 Placements<br> 1.5.2 Our Recruiters <br> 1.5.3 Placement Statistics </b>\",\n    \"1.5.1\",\n    \"<b> 1.5.1 Placements<br>The link to Placements👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/campus-placement-overview' \">Click Here</a> </b>\",\n    \"1.5.2\",\n    \"<b> 1.5.2 Our Recruiters<br>The link to Recruiters👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/our-recruiters' \">Click Here</a> </b>\",\n    \"1.5.3\",\n    \"<b > 1.5.3 Placement Statistics<br>The link to Placement Statistics👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/placement-statistics' \">Click Here</a> </b>\",\n\n    \"2\",\n    \"<b >FACULTY<br>The following are frequently searched terms related to faculty. Please select one from the options below :</br></br>2.1 Portals & Administration<br>2.2  Change Personal Details<br>2.3  Examination </b>\",\n    \n    \"2.1\",\n    \"<b > PORTALS & ADMINISTRATION These are the top results:<br> 2.1.1 Biometric Attendance System <br>2.1.2 Moodle </b>\",\n    \"2.1.1\",\n    \"<b> 2.1.1 Biometric Attendance<br>The link to Biometric Attendance👉<a href=\" 'http://samay.fragnel.edu.in:1234/timeo/' \">Click Here</a> </b>\",\n    \"2.1.2\",\n    \"<b> 2.1.2 Moodle<br>The link to Moodle👉<a href=\" 'http://gyan.fragnel.edu.in:2222/moodle' \">Click Here</a> </b>\",\n\n    \"2.2\",\n    \"<b > CHANGE PERSONAL DETAILS These are the top results:<br> <br> 2.2.1 Site Login <br> </b>\",\n    \"2.2.1\",\n    \"<b> 2.2.1 Site Login<br>The link to Site Login👉<a href=\" 'http://www.frcrce.ac.in/index.php/component/users/?view=login&Itemid=437' \">Click Here</a> </b>\",\n   \n    \"2.3\",\n    \"<b > EXAMINATION <br>These are the top results:<br> <br> 2.3.1 Notices<br> 2.3.2 Question Paper Archive </b>\",\n    \"2.3.1\",\n    \"<b> 2.3.1 Notices <br>The link to Notices 👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices/110-examsection' \">Click Here</a> </b>\",\n    \"2.3.2\",\n    \"<b> 2.3.2 Question Paper Archive <br>The link to Archive👉<a href=\" 'http://www.frcrce.ac.in/questionpaper/ArchUE.php' \">Click Here</a> </b>\",\n  \n    \"3\",\n    \"<b> PARENTS <br>The following are frequently searched terms related to Parents. Please select one from the options below : <br> <br> 3.1 About Us <br>3.2 Notices <br>3.3 Fee Payment <br>3.4 Placements </b> \" ,\n\n    \"3.1\",\n    \"<b > ABOUT US<br>These are the top results:<br> <br> 3.1.1 About CRCE<br> 3.1.2 Director's Address <br> 3.1.3 Principal's Address </b>\",\n    \"3.1.1\",\n    \"<b > 3.1.1 About CRCE<br>The link to About CRCE👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/about-crce' \">Click Here</a> </b>\",\n    \"3.1.2\",\n    \"<b > 3.1.2 Director's Address <br>The link to Director's Address👉<a href=\" 'http://www.frcrce.ac.in/index.php/about-us/director' \">Click Here</a> </b>\",\n    \"3.1.3\",\n    \"<b > 3.1.3 Principal's Address <br>The link to Principal's Address👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/principal-frcrce' \">Click Here</a> </b>\",\n\n    \"3.2\",\n    \"<b > NOTICES<br>These are the top results:<br> <br> 3.2.1 All Notices  </b>\",\n    \"3.2.1\",\n    \"<b > 3.2.1 All Notices <br>The link to All Notices👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices' \">Click Here</a> </b>\",\n\n    \"3.3\",\n    \"<b > ABOUT US<br>These are the top results:<br> <br>3.3.1 Payment Details <br> 3.3.2 Online Payment Portal </b>\",\n    \"3.3.1\",\n    \"<b > 3.3.1 Payment Details<br>The link to Payment Details 👉 <a href=\" 'http://frcrce.ac.in/attachments/article/248/NEFTForm.pdf' \">Click Here</a> </b>\",\n    \"3.3.2\",\n    \"<b > 3.3.2 Payment Portal <br>The link to Payment Portal👉<a href=\" 'https://pay.fragnel.edu.in/CRCE/initPay.php' \">Click Here</a> </b>\",\n\n    \"3.4\",\n    \"<b > PLACEMENTS These are the top results:<br> <br>3.4.1 Placements<br> 3.4.2 Our Recruiters <br> 3.4.3 Placement Statistics </b>\",\n    \"3.4.1\",\n    \"<b> 3.4.1 Placements<br>The link to Placements👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/campus-placement-overview' \">Click Here</a> </b>\",\n    \"3.4.2\",\n    \"<b> 3.4.2 Our Recruiters<br>The link to Recruiters👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/our-recruiters' \">Click Here</a> </b>\",\n    \"3.4.3\",\n    \"<b > 3.4.3 Placement Statistics<br>The link to Placement Statistics👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/placement-statistics' \">Click Here</a> </b>\",\n\n    \"4\",\n    \"<b VISITORS <br>The following are frequently searched terms related to visitors. Please select one from the options below : <br> <br> 4.1 About Us<br>4.2 Programs We Offer <br>4.3 Student Bodies <br>4.4 Extra-Curricular </b>\",\n    \n    \"4.1\",\n    \"<b > ABOUT US<br>These are the top results:<br> <br>4.1.1 About CRCE<br> 4.1.2 Director's Address <br> 4.1.3 Principal's Address </b>\",\n    \"4.1.1\",\n    \"<b > 4.1.1 About CRCE<br>The link to About CRCE👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/about-crce' \">Click Here</a> </b>\",\n    \"4.1.2\",\n    \"<b > 4.1.2 Director's Address <br>The link to Director's Address👉<a href=\" 'http://www.frcrce.ac.in/index.php/about-us/director' \">Click Here</a> </b>\",\n    \"4.1.3\",\n    \"<b > 4.1.3 Principal's Address <br>The link to Principal's Address👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/principal-frcrce' \">Click Here</a> </b>\",\n\n    \"4.2\",\n    \"<b > PROGRAMS WE OFFER <br>These are the top results:<br> <br>4.2.1 Under-Graduate <br> 4.2.2 Post-Graduate<br> 4.2.3 Ph.D </b>\",\n    \"4.2.1\",\n    \"<b > 4.2.1 Under-Graduate<br>The link to Under-Graduate👉 <a href=\" 'http://www.frcrce.ac.in/index.php/admission/under-graduate' \">Click Here</a> </b>\",\n    \"4.2.2\",\n    \"<b > 4.2.2 Post-Graduate <br>The link to Post-Graduate👉<a href=\" 'http://www.frcrce.ac.in/index.php/admission/post-graduate' \">Click Here</a> </b>\",\n    \"4.2.3\",\n    \"<b > 4.2.3 Ph.D <br>The link to Ph.D👉 <a href=\" 'http://www.frcrce.ac.in/index.php/admission/phd' \">Click Here</a> </b>\",\n\n    \"4.3\",\n    \"<b > STUDENT BODIES <br>These are the top results:<br> <br>4.3.1 Students Council  <br> 4.3.2 Students Chapter <br> 4.3.3 Students Project Groups </b>\",\n    \"4.3.1\",\n    \"<b > 4.3.1 Students Council  <br>The link to Students Council  👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/students-council' \">Click Here</a> </b>\",\n    \"4.3.2\",\n    \"<b > 4.3.2 Students Chapter <br>The link to Students Chapter 👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/forums' \">Click Here</a> </b>\",\n    \"4.3.3\",\n    \"<b > 4.3.3 Students Project Groups <br>The link to Students Project Groups👉 <a href=\" 'http://www.frcrce.ac.in/' \">Click Here</a> </b>\",\n\n    \"4.4\",\n    \"<b > EXTRA-CURRICULAR <br>These are the top results:<br> <br>4.4.1 Events  <br> 4.4.2 Institute Innovation Cell </b>\",\n    \"4.4.1\",\n    \"<b > 4.4.1 Events    <br>The link to Events   👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/events-new' \">Click Here</a> </b>\",\n    \"4.4.2\",\n    \"<b > 4.4.2 Institute Innovation Cell <br>The link to Institute Innovation Cell 👉<a href=\" 'https://crceiic.github.io/' \">Click Here</a> </b>\",\n\n]\n\ntrainer.train(conversation)\n"
  },
  {
    "path": "CRCE Bot/static/Dataset.txt",
    "content": "\"Hello\",\r\n    \"Hi Human\",\r\n    \"How are you doing ?\",\r\n    \"I'm doing great.\",\r\n    \"That is good to hear\",\r\n    \"Thank you.\",\r\n    \"You're welcome.\",\r\n    \"what is your name ?\" ,\r\n    \"I'm CRCE Bot\",\r\n    \"who made you ?\",\r\n    \"I created by Candia , Lizel, Gini\",\r\n    \"<b style='colour:red'>Hi there, Welcome to Fr. CRCE! 👋 If you need any assistance, I'm always here.<br>Which of the following user groups do you belong to?</b>\",\r\n    \"1\",\r\n    \"<b >STUDENT <br>The following are frequently searched terms related to student . Please select one from the options below :<pre>1.1 Curriculars <br>1.2  Extra-Curriculars<br>1.3  Administrative<br>1.4 Examination <br>1.5 Placements </b>\",\r\n    \r\n    \"1.1\",\r\n    \"<b>  CURRICULAR <br>  These are the top results:  <br> 1.1.1 Moodle <br> 1.1.2 Academic Calendar <br> 1.1.3 Syllabus </b>\",\r\n    \"1.1.1\",\r\n    \"<b> 1.1.1 Moodle <br>The link to Moodle 👉 <a href=\" 'http://gyan.fragnel.edu.in:2222/moodle/' \">Click Here</a> </b>\",\r\n    \"1.1.2\",\r\n    \"<b > 1.1.2 Academic Calender<br>The link to Academic Calender👉<a href=\" 'http://www.frcrce.ac.in/index.php/academics/academic-calendar' \">Click Here</a> </b>\",\r\n    \"1.1.3\",\r\n    \"<b> 1.1.3 Syllabus<br>The link to Syllabus 👉 <a href=\" 'http://www.frcrce.ac.in/index.php/academics/tlp/syllabus' \">Click Here</a> </b>\",\r\n\r\n    \"1.2\",\r\n    \"<b>EXTRA-CURRICULARS<br>These are the top results: <br>  1.2.1 Events<br> 1.2.2 Student Chapters <br> 1.2.3 Student's Council</b>\",\r\n    \"1.2.1\",\r\n    \"<b > 1.2.1 Events<br>The link to Events👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/events-new' \">Click Here</a></b>\",\r\n    \"1.2.2\",\r\n    \"<b > 1.2.2 Student Chapters<br>The link to Student Chapters👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/forums' \">Click Here</a> </b>\",\r\n    \"1.2.3\",\r\n    \"<b > 1.2.3 Student's Council <br>The link to Student's Council👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/students-council' \">Click Here</a> </b>\",\r\n\r\n    \"1.3\",\r\n    \"<b>1.3 ADMINISTRATIVE<br>These are the top results: <br>  1.3.1 Students Portal<br> 1.3.2 Notices </b>\",\r\n    \"1.3.1\",\r\n    \"<b> 1.3.1 Students Portal<br>The link to Students Portal👉 <a href=\" 'http://granth.fragnel.edu.in:5186/pinfo/index.php' \">Click Here</a> </b>\",\r\n    \"1.3.2\",\r\n    \"<b> 1.3.2 Notices<br>The link to Notices👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices/109-office-administration' \">Click Here</a> </b>\",\r\n\r\n    \"1.4\",\r\n    \"<b > EXAMINATION <br>These are the top results:<br> 1.4.1 Notices<br> 1.4.2 Examination Process <br> 1.4.3 Question Paper Archive </b>\",\r\n    \"1.4.1\",\r\n    \"<b > 1.4.1 Notices<br>The link to Notices👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices/110-examsection' \">Click Here</a> </b>\",\r\n    \"1.4.2\",\r\n    \"<b > 1.4.2 Examination Process<br>The link to Examination Process👉<a href=\" 'http://www.frcrce.ac.in/index.php/academics/examination/exam-process' \">Click Here</a> </b>\",\r\n    \"1.4.3\",\r\n    \"<b > 1.4.3 Question Paper Archive<br>The link to Archives👉 <a href=\" 'http://www.frcrce.ac.in/questionpaper/ArchUE.php' \">Click Here</a> </b>\",\r\n\r\n    \"1.5\",\r\n    \"<b > PLACEMENTS These are the top results:<br> 1.5.1 Placements<br> 1.5.2 Our Recruiters <br> 1.5.3 Placement Statistics </b>\",\r\n    \"1.5.1\",\r\n    \"<b> 1.5.1 Placements<br>The link to Placements👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/campus-placement-overviewn' \">Click Here</a> </b>\",\r\n    \"1.5.2\",\r\n    \"<b> 1.5.2 Our Recruiters<br>The link to Recruiters👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/our-recruiters' \">Click Here</a> </b>\",\r\n    \"1.5.3\",\r\n    \"<b > 1.5.3 Placement Statistics<br>The link to Placement Statistics👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/placement-statistics' \">Click Here</a> </b>\",\r\n\r\n    \"2\",\r\n    \"<b >FACULTY<br>The following are frequently searched terms related to faculty. Please select one from the options below :<pre>2.1 Portals & Administration<br>2.2  Change Personal Details<br>2.3  Examination </b>\",\r\n    \r\n    \"2.1\",\r\n    \"<b > PORTALS & ADMINISTRATION These are the top results:<br> 2.1.1 Biometric Attendance System <br>2.1.2 Moodle </b>\",\r\n    \"2.1.1\",\r\n    \"<b> 2.1.1 Biometric Attendance<br>The link to Biometric Attendance👉<a href=\" 'http://samay.fragnel.edu.in:1234/timeo/' \">Click Here</a> </b>\",\r\n    \"2.1.2\",\r\n    \"<b> 2.1.2 Moodle<br>The link to Recruiters👉<a href=\" 'http://gyan.fragnel.edu.in:2222/moodle' \">Click Here</a> </b>\",\r\n\r\n    \"2.2\",\r\n    \"<b > CHANGE PERSONAL DETAILS These are the top results:<br> 2.2.1 Site Login <br> </b>\",\r\n    \"2.2.1\",\r\n    \"<b> 2.2.1 Site Login<br>The link to Site Login👉<a href=\" 'http://www.frcrce.ac.in/index.php/component/users/?view=login&Itemid=437' \">Click Here</a> </b>\",\r\n   \r\n    \"2.3\",\r\n    \"<b > EXAMINATION These are the top results:<br> 2.3.1 Notices<br> 2.3.2 Question Paper Archive </b>\",\r\n    \"2.3.1\",\r\n    \"<b> 2.3.1 Notices <br>The link to Notices 👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices/110-examsection' \">Click Here</a> </b>\",\r\n    \"2.3.2\",\r\n    \"<b> 2.3.2 Question Paper Archive <br>The link to Archive👉<a href=\" 'http://www.frcrce.ac.in/questionpaper/ArchUE.php' \">Click Here</a> </b>\",\r\n  \r\n    \"3\",\r\n    \"<b> PARENTS <br>The following are frequently searched terms related to Parents. Please select one from the options below :<pre>3.1 About Us <br>3.2  Notices <br> 3.3  Fee Payment </br> 3.4  Placements </b> \" ,\r\n\r\n    \"3.1\",\r\n    \"<b > ABOUT US<br>These are the top results:<br> 3.1.1 About CRCE<br> 3.1.2 Director's Address <br> 3.1.3 Principal's Address </b>\",\r\n    \"3.1.1\",\r\n    \"<b > .3.1.1 About CRCE<br>The link to About CRCE👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/about-crce' \">Click Here</a> </b>\",\r\n    \"3.1.2\",\r\n    \"<b > 3.1.2 Director's Address <br>The link to Director's Address👉<a href=\" 'http://www.frcrce.ac.in/index.php/about-us/director' \">Click Here</a> </b>\",\r\n    \"3.1.3\",\r\n    \"<b > 3.1.3 Principal's Address <br>The link to Principal's Address👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/principal-frcrce' \">Click Here</a> </b>\",\r\n\r\n    \"3.2\",\r\n    \"<b > NOTICES<br>These are the top results:<br> 3.1.1 All Notices  </b>\",\r\n    \"3.2.1\",\r\n    \"<b > .3.2.1 All Notices <br>The link to All Notices👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/crce-notices' \">Click Here</a> </b>\",\r\n\r\n    \"3.3\",\r\n    \"<b > ABOUT US<br>These are the top results:<br> 3.3.1 Payment Details <br> 3.3.2 Online Payment Portal </b>\",\r\n    \"3.1.1\",\r\n    \"<b > .3.1.1 Payment Details<br>The link to Payment Details 👉 <a href=\" 'http://frcrce.ac.in/attachments/article/248/NEFTForm.pdf' \">Click Here</a> </b>\",\r\n    \"3.1.2\",\r\n    \"<b > 3.1.2 Payment Portal <br>The link to Payment Portal👉<a href=\" 'https://pay.fragnel.edu.in/CRCE/initPay.php' \">Click Here</a> </b>\",\r\n\r\n    \"3.4\",\r\n    \"<b > PLACEMENTS These are the top results:<br> 3.4.1 Placements<br> 3.4.2 Our Recruiters <br> 3.4.3 Placement Statistics </b>\",\r\n    \"3.4.1\",\r\n    \"<b> 3.4.1 Placements<br>The link to Placements👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/campus-placement-overviewn' \">Click Here</a> </b>\",\r\n    \"3.4.2\",\r\n    \"<b> 3.4.2 Our Recruiters<br>The link to Recruiters👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/our-recruiters' \">Click Here</a> </b>\",\r\n    \"3.4.3\",\r\n    \"<b > 3.4.3 Placement Statistics<br>The link to Placement Statistics👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/placements/placement-statistics' \">Click Here</a> </b>\",\r\n\r\n    \"4\",\r\n    \"<b VISITORS <br>The following are frequently searched terms related to faculty. Please select one from the options below :<pre>4.1About Us<br>4.2  Programs We Offer <br>4.3  Student Bodies <br> 4.4 Extra-Curriculars </b>\",\r\n    \r\n    \"4.1\",\r\n    \"<b > ABOUT US<br>These are the top results:<br> 4.1.1 About CRCE<br> 4.1.2 Director's Address <br> 4.1.3 Principal's Address </b>\",\r\n    \"4.1.1\",\r\n    \"<b > .4.1.1 About CRCE<br>The link to About CRCE👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/about-crce' \">Click Here</a> </b>\",\r\n    \"4.1.2\",\r\n    \"<b > 4.1.2 Director's Address <br>The link to Director's Address👉<a href=\" 'http://www.frcrce.ac.in/index.php/about-us/director' \">Click Here</a> </b>\",\r\n    \"4.1.3\",\r\n    \"<b > 4.1.3 Principal's Address <br>The link to Principal's Address👉 <a href=\" 'http://www.frcrce.ac.in/index.php/about-us/principal-frcrce' \">Click Here</a> </b>\",\r\n\r\n    \"4.2\",\r\n    \"<b > PROGRAMS WE OFFER <br>These are the top results:<br> 4.2.1 Under-Graduate <br> 4.1.2 Post-Graduate<br> 4.2.3 Ph.D </b>\",\r\n    \"4.2.1\",\r\n    \"<b > .4.2.1 Under-Graduate<br>The link to Under-Graduate👉 <a href=\" 'http://www.frcrce.ac.in/index.php/admission/under-graduate' \">Click Here</a> </b>\",\r\n    \"4.2.2\",\r\n    \"<b > 4.2.2 Post-Graduate <br>The link to Post-Graduate👉<a href=\" 'http://www.frcrce.ac.in/index.php/admission/post-graduate' \">Click Here</a> </b>\",\r\n    \"4.2.3\",\r\n    \"<b > 4.2.3 Ph.D <br>The link to Ph.D👉 <a href=\" 'http://www.frcrce.ac.in/index.php/admission/phd' \">Click Here</a> </b>\",\r\n\r\n    \"4.3\",\r\n    \"<b > STUDENT BODIES <br>These are the top results:<br> 4.3.1 Students Council  <br> 4.3.2 Students Chapter <br> 4.3.3 Students Project Groups </b>\",\r\n    \"4.3.1\",\r\n    \"<b > .4.3.1 Students Council  <br>The link to Students Council  👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/students-council' \">Click Here</a> </b>\",\r\n    \"4.3.2\",\r\n    \"<b > 4.3.2 Students Chapter <br>The link to Students Chapter 👉<a href=\" 'http://www.frcrce.ac.in/index.php/students/forums' \">Click Here</a> </b>\",\r\n    \"4.3.3\",\r\n    \"<b > 4.3.3 Students Project Groups <br>The link to Students Project Groups👉 <a href=\" 'http://www.frcrce.ac.in/' \">Click Here</a> </b>\",\r\n\r\n    \"4.4\",\r\n    \"<b > EXTRA-CURRICULARS <br>These are the top results:<br> 4.4.1 Events  <br> 4.4.2 Institute Innovation Cell </b>\",\r\n    \"4.3.1\",\r\n    \"<b > .4.3.1 Events    <br>The link to Events   👉 <a href=\" 'http://www.frcrce.ac.in/index.php/students/events-new' \">Click Here</a> </b>\",\r\n    \"4.3.2\",\r\n    \"<b > 4.3.2 Institute Innovation Cell <br>The link to Institute Innovation Cell 👉<a href=\" 'https://crceiic.github.io/' \">Click Here</a> </b>\",\r\n\r\n\r\n"
  },
  {
    "path": "CRCE Bot/static/assets/css/Login-Form-Dark.css",
    "content": ".login-dark {\n  height: 1000px;\n  background: aliceblue;\n  /*background-size: cover;*/\n  background-size:contain;\n  position: relative;\n}\n\n.login-dark form {\n  max-width: 30%;\n  width: 90%;\n  background-color: #1e2833;\n  padding: 40px;\n  border-radius: 4px;\n  transform: translate(-50%, -50%);\n  position: absolute;\n  top: 40%;\n  left: 50%;\n  color: #fff;\n  box-shadow: 3px 3px 4px rgba(0,0,0,0.2);\n}\n\n.login-dark .illustration {\n  text-align: center;\n  padding: 15px 0 20px;\n  font-size: 100px;\n  color: #2980ef;\n}\n\n.login-dark form .form-control {\n  background: none;\n  border: none;\n  border-bottom: 1px solid #434a52;\n  border-radius: 0;\n  box-shadow: none;\n  outline: none;\n  color: inherit;\n}\n\n.login-dark form .btn-primary {\n  background: #214a80;\n  border: none;\n  border-radius: 4px;\n  padding: 11px;\n  box-shadow: none;\n  margin-top: 26px;\n  text-shadow: none;\n  outline: none;\n}\n\n.login-dark form .btn-primary:hover, .login-dark form .btn-primary:active {\n  background: #214a80;\n  outline: none;\n}\n\n.login-dark form .forgot {\n  display: block;\n  text-align: center;\n  font-size: 14px;\n  color: white;\n  opacity: 0.9;\n  text-decoration: none;\n}\n\n.login-dark form .forgot:hover, .login-dark form .forgot:active {\n  opacity: 1;\n  text-decoration: none;\n  text-decoration: white;\n\n}\n\n.login-dark form .btn-primary:active {\n  transform: translateY(1px);\n}\n\n"
  },
  {
    "path": "CRCE Bot/static/assets/js/bs-init.js",
    "content": "$(document).ready(function(){\n\t$('[data-bss-hover-animate]')\n\t\t.mouseenter( function(){ var elem = $(this); elem.addClass('animated ' + elem.attr('data-bss-hover-animate')) })\n\t\t.mouseleave( function(){ var elem = $(this); elem.removeClass('animated ' + elem.attr('data-bss-hover-animate')) });\n});"
  },
  {
    "path": "CRCE Bot/static/styles/style.css",
    "content": ":root {\n  /*--body-bg: linear-gradient(135deg, #f5f7fa 0%, rgb(221, 237, 250) 100%);*/\n  --body-bg: aliceblue;\n  --msger-bg: #fff;\n  --border: 2px solid #ddd;\n  --left-msg-bg: linear-gradient(to right, #764ba2, #667eea);\n  --right-msg-bg: linear-gradient(to right, #753a88, #cc2b5e);\n  /*--right-msg-bg: #579ffb;*/\n}\n\nhtml {\n  box-sizing: border-box;\n}\n\n*,\n*:before,\n*:after {\n  margin: 0;\n  padding: 0;\n  box-sizing: inherit;\n}\n\nbody {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  height: 100vh;\n  background-image: var(--body-bg);\n  /*font-family: Helvetica, sans-serif;*/\n  font-family: Georgia, \"Times New Roman\", Times, serif;\n}\n.navbar {\n  width: 100%;\n  max-width: 867px;\n}\n.msger {\n  display: flex;\n  flex-flow: column wrap;\n  justify-content: space-between;\n  width: 100%;\n  max-width: 867px;\n  margin: 25px 10px;\n  height: calc(100% - 50px);\n  border: var(--border);\n  border-radius: 5px;\n  background: var(--msger-bg);\n  box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);\n}\n\n.msger-header {\n  /* display: flex; */\n  font-size: medium;\n  justify-content: space-between;\n  padding: 10px;\n  text-align: center;\n  border-bottom: var(--border);\n  background: #eee;\n  color: rgb(0, 0, 0);\n}\n\n.msger-chat {\n  flex: 1;\n  overflow-y: auto;\n  padding: 10px;\n}\n.msger-chat::-webkit-scrollbar {\n  width: 6px;\n}\n.msger-chat::-webkit-scrollbar-track {\n  background: #ddd;\n}\n.msger-chat::-webkit-scrollbar-thumb {\n  background: #bdbdbd;\n}\n.msg {\n  display: flex;\n  align-items: flex-end;\n  margin-bottom: 10px;\n}\n\n.msg-img {\n  width: 50px;\n  height: 50px;\n  margin-right: 10px;\n  background: #ddd;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: cover;\n  border-radius: 50%;\n}\n.msg-bubble {\n  max-width: 450px;\n  padding: 15px;\n  border-radius: 15px;\n  background: var(--left-msg-bg);\n}\n.msg-info {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  margin-bottom: 10px;\n}\n.msg-info-name {\n  margin-right: 10px;\n  font-weight: bold;\n}\n.msg-info-time {\n  font-size: 0.85em;\n}\n\n.left-msg .msg-bubble {\n  border-bottom-left-radius: 0;\n}\n\n.right-msg {\n  flex-direction: row-reverse;\n}\n.right-msg .msg-bubble {\n  background: var(--right-msg-bg);\n  color: #fff;\n  border-bottom-right-radius: 0;\n}\n.right-msg .msg-img {\n  margin: 0 0 0 10px;\n}\n\n.msger-inputarea {\n  display: flex;\n  padding: 10px;\n  border-radius: 5px;\n  border-top: var(--border);\n  background: #eee;\n}\n.msger-inputarea * {\n  padding: 10px;\n  border: none;\n  border-radius: 3px;\n  font-size: 1em;\n}\n.msger-input {\n  flex: 1;\n  background: #ddd;\n}\n.msger-send-btn {\n  margin-left: 10px;\n\n  /*background: rgb(0, 196, 65);*/\n  background-image: linear-gradient(to right, #4568dc, #b06ab3);\n  color: black;\n  font-weight: bold;\n  cursor: pointer;\n  transition: background 0.23s;\n}\n.msger-send-btn:hover {\n  background-image: linear-gradient(to right, #b06ab3, #4568dc);\n  /* background: rgb(0, 180, 50);*/\n}\n\n.msger-chat {\n  background-color: black;\n}\n"
  },
  {
    "path": "CRCE Bot/templates/forgot.html",
    "content": "<!DOCTYPE html>\r\n<html>\r\n\r\n<head>\r\n    <meta charset=\"utf-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, shrink-to-fit=no\">\r\n    <title>Login</title>\r\n    <link rel=\"icon\" href=\"{{ url_for('static', filename='images/icon.png') }}\" type=\"image\" sizes=\"16x16\">\r\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/bootstrap/css/bootstrap.min.css') }}\">\r\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900\">\r\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i\">\r\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/fonts/ionicons.min.css') }}\">\r\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css\">\r\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/css/Login-Form-Dark.css') }}\">\r\n\r\n</head>\r\n  <body>\r\n    <nav class=\"navbar navbar-dark navbar-expand-lg fixed-top bg-dark navbar-custom\">\r\n      <div class=\"container\">\r\n          <a class=\"navbar-brand\" href=\"#\" style=\"font-size: large;\">CRCE Bot</a><button data-toggle=\"collapse\" class=\"navbar-toggler\" data-target=\"#navbarResponsive\"><span class=\"navbar-toggler-icon\"></span></button>\r\n          <div class=\"collapse navbar-collapse\" id=\"navbarResponsive\">\r\n              <ul class=\"navbar-nav ml-auto\">\r\n                  <li class=\"nav-item\"><a class=\"nav-link\" href=\"/\">Log In</a></li>\r\n                  <li class=\"nav-item\"><a class=\"nav-link\" href=\"/register\">Register</a></li>\r\n              </ul>\r\n          </div>\r\n      </div>\r\n  </nav>\r\n  <section class=\"login-dark\">\r\n\r\n    <form action='/add_user' method='POST'>\r\n\r\n      <centre>\r\n        <h4 style=\"text-align: center;\">FORGOT PASSWORD</h4>\r\n      </centre>\r\n      <br>\r\n        <div class=\"form-signup\">\r\n\r\n          <div class=\"form-group\">\r\n            <input class=\"form-control\" type=\"text\" name=\"name\" placeholder=\"Name\" required>\r\n        </div>\r\n\r\n        <div class=\"form-group\">\r\n            <input class=\"form-control\" type=\"email\" name=\"uemail\" placeholder=\"Email\" required>\r\n        </div>\r\n\r\n        <div class=\"form-group\">\r\n            <input class=\"form-control\" type=\"password\" name=\"upassword\" placeholder=\"Password\" pattern=\".{8,}\"   required title=\"8 characters minimum\">\r\n        </div>\r\n       \r\n        <br>\r\n        {{recaptcha}}\r\n        </br>\r\n        <div class=\"form-group\">\r\n            <button class=\"btn btn-block\" data-bss-hover-animate=\"pulse\" type=\"submit\" style=\"background-color: #2980ef; color: white\">Submit</button>\r\n        </div>       \r\n        </div>\r\n    </form>\r\n  </section>\r\n    <script src=\"{{ url_for('static', filename='assets/js/jquery.min.js') }}\"></script>\r\n    <script src=\"{{ url_for('static', filename='assets/bootstrap/js/bootstrap.min.js') }}\"></script>\r\n    <script src=\"{{ url_for('static', filename='assets/js/bs-init.js') }}\"></script>\r\n  </body>\r\n</html>"
  },
  {
    "path": "CRCE Bot/templates/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <title>CRCE Bot</title>\n  <link rel=\"icon\" href=\"{{ url_for('static', filename='images/icon.png') }}\" type=\"image\" sizes=\"16x16\">\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js\"></script>\n  <link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css\">\n  <link rel=\"stylesheet\" href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\">\n  <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='styles/style.css') }}\">\n  <script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js\"></script>\n\n  <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/bootstrap/css/bootstrap.min.css') }}\">\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900\">\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/fonts/ionicons.min.css') }}\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/css/Login-Form-Dark.css') }}\">\n\n</head>\n\n<body>\n  <section class=\"msger\">\n   \n\n      <nav class=\"navbar navbar-expand-lg navbar-dark bg-dark\">\n        <!--a class=\"navbar-brand\" href=\"#\">CRCE Bot</a-->\n        <a class=\"navbar-brand\" href=\"#\" style=\"color: white;\">\n          &emsp;<i class=\"fas fa-graduation-cap\"></i> <b> &nbsp; CRCE BOT &emsp; </b></a>\n        <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarNav\"\n          aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n          <span class=\"navbar-toggler-icon\"></span>\n        </button>\n        <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n          <ul class=\"navbar-nav ml-auto\">\n\n            <li class=\"nav-item active\"><a class=\"nav-link\" href=\"/index\">Home</a></li>\n\n            \n            <li class=\"nav-item\">\n              <a class=\"nav-link\" data-toggle=\"modal\" data-target=\"#exampleModalScrollable\" href=\"#\"> About Us </a>\n             </li>\n\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" data-toggle=\"modal\" data-target=\"#exampleModal\" href=\"#\">Suggestion box</a>\n            </li>\n\n\n            <div class=\"modal fade\" id=\"exampleModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"exampleModalLabel\" aria-hidden=\"true\">\n              <div class=\"modal-dialog\" role=\"document\">\n                <div class=\"modal-content\">\n                  <div class=\"modal-header\">\n                    <h5 class=\"modal-title\" id=\"exampleModalLabel\">Suggestion box</h5>\n                    <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                      <span aria-hidden=\"true\">&times;</span>\n                    </button>\n                  </div>\n                  <div class=\"modal-body\">\n                    <form action='/suggestion' method='POST'>\n                      <div class=\"form-group\">\n                        <input type=\"email\" name='uemail' class='form-control' placeholder=\"Email\" required>\n                        <br>\n                        <textarea class=\"form-control\" id=\"message-text\" placeholder=\"Enter your suggestion...\" name=\"message\" required></textarea>\n                      </div>\n                      <div class=\"modal-footer\">\n                        <button type=\"button\" class=\"btn btn-secondary\" data-dismiss=\"modal\">Close</button>\n                        <button type=\"Submit\" class=\"btn btn-primary\" data-target=\"#alert\">Submit</button>\n                      </div>\n                    </form>\n                  </div>\n                </div>\n              </div>\n            </div>\n            <div class=\"modal fade\" id=\"exampleModalScrollable\" tabindex=\"-1\" role=\"dialog\"\n              aria-labelledby=\"exampleModalScrollableTitle\" aria-hidden=\"true\">\n              <div class=\"modal-dialog modal-dialog-scrollable\" role=\"document\">\n                <div class=\"modal-content\">\n                  <div class=\"modal-header\">\n                    <h5 class=\"modal-title\" id=\"exampleModalScrollableTitle\">Fr CRCE BOT </h5>\n                    <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                      <span aria-hidden=\"true\">&times;</span>\n                    </button>\n                  </div>\n                  <div class=\"modal-body\">\n                   <h3>About Us</h3>\n                   <div><img src=\"http://www.frcrce.ac.in/images/crce/about/college-with-clouds.jpg\" height=\"auto\" width=\"100%\" style=\"border: 3px solid black;\"></div>\n                    <br> <br>\n                   <p style=\"text-align: justify;\">Located in a picturesque environment in the heart of the Mumbai city, Fr.Conceicao Rodrigues College of Engineering (Fr.CRCE) is one of the renowned, premier and sought-after private Engineering colleges. The Institute is dedicated to making a difference in Engineering education, with its exclusive approach towards the ongoing momentum of trends in technology and holistic development.\n\n                    <p style=\"text-align: justify;\">Beginning with an orphanage (BalBhavan) and a trade school in carpentry, the Agnel Ashram (set up in 1957 at Bandra, Mumbai) has today grown into a full-fledged Technical Complex. The Institute today proudly bears the founder's name as a fitting tribute to his impassioned faith in highly-qualified and fully-trained engineers and technicians in the service of the nation.</p>\n                    \n                    <p style=\"text-align: justify;\">The Institute started with only one programme in Production Engineering in 1984 with an intake capacity of 60 students. In 1987, the programme in Electronics Engineering was started with an intake capacity of 60 students followed by Computer Engineering in 1991 with an intake capacity of 60 students. In 2001, the programme in Information Technology was started with an intake capacity of 30 students which was later increased to 60 in 2010. The College started offering Master’s Degree in Electronics Engineering and Mechanical Engineering in the year 2005, each having an intake capacity of 18. Doctoral programs in Electronics Engineering and Mechanical Engineering commenced in 2014 and 2015 respectively. From the year 2019, a new Undergraduate degree programme in Mechanical Engineering has been started with an intake capacity of 60. Also, the BE undergraduate programme in Electronics Engineering has been changed to Electronics and Computer Science. The Undergraduate programme in Information Technology has been merged with Computer Engineering. From the year 2020, college is offering new undergraduate programme in the emerging area of ‘AI & Data Science’.</p>\n\n                    <p style=\"text-align: justify;\">Based on the Outcome-based Education (OBE) parameters and criteria, three programmes of the Institute have been accredited by National Board of Accreditation (NBA-India) for a period of three years valid until June 2022.</p>\n\n                    <p style=\"text-align: justify;\">The Institute has been consistently ranked highly in major surveys like the NIRF, TOI, INDIA TODAY to name a few. The college is ranked among the top 300 Engineering institutes of the country by NIRF 2020, conducted by MHRD. Based on the Outcome-Based Education (OBE) parameters and criteria, three programmes of the institute have been accredited by the National Board of Accreditation (NBA-India) form 2017. The current accreditation is valid until June 2023. The college is also a NAAC accredited. In addition, the Institute has been consistently ranked highly by reputed surveys like TOI, India Today, The Week, Education World to name a few.</p>\n                    <h3>Contact Us</h3>\n                    \n                    <ul>\n                    \n                    <li style = \"margin-left:15px\">Email: group3cgl@gmail.com</li>\n                    <li style = \"margin-left:15px\">By Candida, Gini & Lizel 😊 </li>\n                    </ul>\n                  </div>\n                  <div class=\"modal-footer\">\n                    <button type=\"button\" class=\"btn btn-secondary\" data-dismiss=\"modal\">Close</button>\n                  </div>\n                </div>\n              </div>\n            </div>\n            <li class=\"nav-item\"><a class=\"nav-link\" href=\"/logout\">Log Out</a></li>\n            \n          </ul>\n        </div>\n    \n   \n    </nav>\n    <!--header class=\"msger-header\">\n      <div class=\"msger-header-title\">\n        <h5><i class=\"fas fa-graduation-cap\"></i> <b> &emsp; CRCE BOT &emsp; </b><i class=\"fas fa-graduation-cap\"></i></h5>\n      </div>\n    </header-->\n    {% with messages = get_flashed_messages() %}\n    {% if messages %}\n    {% for message in messages %}\n    <div class=\"alert alert-success alert-dismissible\" id=\"alert\" role=\"alert\">\n      <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">\n        <span aria-hidden=\"true\">&times;</span>\n      </button>\n      <strong>{{ message }}</strong>\n    </div>\n    {% endfor %}\n    {% endif %}\n    {% endwith %}\n   \n   \n    <main class=\"msger-chat\" style=\"color: white;\">\n    </br>\n      <div class=\"msg left-msg\">       \n        <div class=\"msg-img\" style = \"background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSByXho41yToOFz5UcHHwct3X-OWwkft_akfA&usqp=CAU)\">\n        </div>\n        <div class=\"msg-bubble\">\n          <div class=\"msg-info\">\n            <div class=\"msg-info-name\"><b>CRCE BOT</b> </div>\n          </div>      \n              \n          <div class=\"msg-text\" style=\"color: white;\">\n            <b >Hi there, Welcome to Fr. CRCE! 👋 If you need any assistance, I'm always here.\n          </div>\n        </div>\n      </div> \n      <div class=\"msg left-msg\">       \n        <div class=\"msg-img\" style = \"background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSByXho41yToOFz5UcHHwct3X-OWwkft_akfA&usqp=CAU)\">\n        </div>\n        <div class=\"msg-bubble\">\n          <div class=\"msg-info\">\n            <div class=\"msg-info-name\"> <b>CRCE BOT</b></div>\n          </div>      \n              \n          <div class=\"msg-text\" style=\"color: white;\">\n           Which of the following user groups do you belong to?\n            \n              <br><br>1.&emsp;Student's Section Enquiry.</br>2.&emsp;Faculty Section Enquiry. </br>3.&emsp;Parent's Section Enquiry.</br>4.&emsp;Visitor's Section Enquiry.</br>\n    \n        </div>               \n          \n        </div>\n      </div>\n\n    </main>\n\n    <form class=\"msger-inputarea\">\n      <input type=\"text\" class=\"msger-input\" id=\"textInput\" placeholder=\"Enter your enquiry number...\">\n      <button type=\"submit\" class=\"msger-send-btn\">Send</button>\n    </form>\n  </section>\n  <!-- partial -->\n  <script src='https://use.fontawesome.com/releases/v5.0.13/js/all.js'></script>\n  <script>\n\n    $(\"#alert\").delay(3000).slideUp(200, function() {\n    $(this).alert('close');\n    });\n\n    $('#myModal').on('shown.bs.modal', function () {\n      $('#myInput').trigger('focus')\n    })\n    \n    const msgerForm = get(\".msger-inputarea\");\n    const msgerInput = get(\".msger-input\");\n    const msgerChat = get(\".msger-chat\");\n\n\n    // Icons made by Freepik from www.flaticon.com\n    const BOT_IMG = \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSByXho41yToOFz5UcHHwct3X-OWwkft_akfA&usqp=CAU\";\n    const PERSON_IMG = \"https://image.flaticon.com/icons/svg/145/145867.svg\";\n    const BOT_NAME = \"CRCE Bot\";\n    const PERSON_NAME = \"You\";\n\n    msgerForm.addEventListener(\"submit\", event => {\n      event.preventDefault();\n\n      const msgText = msgerInput.value;\n      if (!msgText) return;\n\n      appendMessage(PERSON_NAME, PERSON_IMG, \"right\", msgText);\n      msgerInput.value = \"\";\n      botResponse(msgText);\n    });\n\n    function appendMessage(name, img, side, text) {\n      //   Simple solution for small apps\n      const msgHTML = `\n<div class=\"msg ${side}-msg\">\n  <div class=\"msg-img\" style=\"background-image: url(${img})\"></div>\n\n  <div class=\"msg-bubble\">\n    <div class=\"msg-info\">\n      <div class=\"msg-info-name\">${name}</div>\n      <div class=\"msg-info-time\">${formatDate(new Date())}</div>\n    </div>\n\n    <div class=\"msg-text\">${text}</div>\n  </div>\n</div>\n`;\n\n      msgerChat.insertAdjacentHTML(\"beforeend\", msgHTML);\n      msgerChat.scrollTop += 500;\n    }\n\n    function botResponse(rawText) {\n\n      // Bot Response\n      $.get(\"/get\", { msg: rawText }).done(function (data) {\n        console.log(rawText);\n        console.log(data);\n        const msgText = data;\n        appendMessage(BOT_NAME, BOT_IMG, \"left\", msgText);\n\n      });\n\n    }\n\n\n    // Utils\n    function get(selector, root = document) {\n      return root.querySelector(selector);\n    }\n\n    function formatDate(date) {\n      const h = \"0\" + date.getHours();\n      const m = \"0\" + date.getMinutes();\n\n      return `${h.slice(-2)}:${m.slice(-2)}`;\n    }\n\n  </script>\n  <script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js\"\n    integrity=\"sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0\"\n    crossorigin=\"anonymous\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\"\n    integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\"\n    crossorigin=\"anonymous\"></script>\n  <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\"\n    integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\"\n    crossorigin=\"anonymous\"></script>\n</body>\n\n</html>\n"
  },
  {
    "path": "CRCE Bot/templates/login.html",
    "content": "\n<!DOCTYPE html>\n<html>\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, shrink-to-fit=no\">\n    <title>Login</title>\n    <link rel=\"icon\" href=\"{{ url_for('static', filename='images/icon.png') }}\" type=\"image\" sizes=\"16x16\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/bootstrap/css/bootstrap.min.css') }}\">\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900\">\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/fonts/ionicons.min.css') }}\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/css/Login-Form-Dark.css') }}\">\n\n</head>\n\n<body>\n    <nav class=\"navbar navbar-dark navbar-expand-lg fixed-top bg-dark navbar-custom\">\n        <div class=\"container\">\n            <a class=\"navbar-brand\" href=\"#\" style=\"font-size: large;\">CRCE Bot</a><button data-toggle=\"collapse\" class=\"navbar-toggler\" data-target=\"#navbarResponsive\"><span class=\"navbar-toggler-icon\"></span></button>\n            <div class=\"collapse navbar-collapse\" id=\"navbarResponsive\">\n                <ul class=\"navbar-nav ml-auto\">\n                    <li class=\"nav-item\"><a class=\"nav-link\" href=\"/\">Log In</a></li>\n                    <li class=\"nav-item\"><a class=\"nav-link\" href=\"/register\">Register</a></li>\n                </ul>\n            </div>\n        </div>\n    </nav>\n\n    <section class=\"login-dark\"> \n        <form action='/login_validation' method='POST'>\n            <div>\n                {% with messages = get_flashed_messages() %}\n                    {% if messages %}\n                        {% for message in messages %}\n                        <div class=\"alert alert-danger alert-dismissible fade show\" role=\"alert\">\n                            <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">\n                            <span aria-hidden=\"true\">&times;</span>\n                            </button>\n                            <strong>{{ message }}</strong> <br><small> Try again or forgot the password!</small>\n                        </div>\n                        {% endfor %}\n                    {% endif %}\n                {% endwith %}\n            </div>\n            <div class=\"illustration\"><i class=\"icon ion-ios-locked-outline\"></i></div>\n            <div class=\"form-group\">\n                <input class=\"form-control\" type=\"email\" name=\"email\" placeholder=\"Email\" required/>\n            </div>\n            <div class=\"form-group\">\n                <input class=\"form-control\" type=\"password\" name=\"password\" placeholder=\"Password\" pattern=\".{8,}\" required title=\"8 characters minimum\">\n            </div>\n            </br>\n            <div class=\"form-group\">\n                <button class=\"btn btn-block\" data-bss-hover-animate=\"pulse\" type=\"submit\" style=\"background-color: #2980ef; color:white;\">\n                    Log In\n                </button>\n            </div>\n        \n            <a class=\"forgot\" href=\"/register\"> Create an Account </a>\n            <a class=\"forgot\" href=\"/forgot\">Forgot your email or password?</a>\n        </form>\n    </section>\n    <script src=\"{{ url_for('static', filename='assets/js/jquery.min.js') }}\"></script>\n    <script src=\"{{ url_for('static', filename='assets/bootstrap/js/bootstrap.min.js') }}\"></script>\n    <script src=\"{{ url_for('static', filename='assets/js/bs-init.js') }}\"></script>\n</body>\n\n</html>"
  },
  {
    "path": "CRCE Bot/templates/register.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, shrink-to-fit=no\">\n    <title>Register</title>\n    <link rel=\"icon\" href=\"{{ url_for('static', filename='images/icon.png') }}\" type=\"image\" sizes=\"16x16\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/bootstrap/css/bootstrap.min.css') }}\">\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900\">\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/fonts/ionicons.min.css') }}\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css\">\n    <link rel=\"stylesheet\" href=\"{{ url_for('static', filename='assets/css/Login-Form-Dark.css') }}\">\n\n</head>\n<body>\n    <nav class=\"navbar navbar-dark navbar-expand-lg fixed-top bg-dark navbar-custom\">\n        <div class=\"container\">\n            <a class=\"navbar-brand\" href=\"#\" style=\"font-size: large;\">CRCE Bot</a><button data-toggle=\"collapse\" class=\"navbar-toggler\" data-target=\"#navbarResponsive\"><span class=\"navbar-toggler-icon\"></span></button>\n            <div class=\"collapse navbar-collapse\" id=\"navbarResponsive\">\n                <ul class=\"navbar-nav ml-auto\">\n                    <li class=\"nav-item\"><a class=\"nav-link\" href=\"/\">Log In</a></li>\n                    <li class=\"nav-item\"><a class=\"nav-link\" href=\"/register\">Register</a></li>\n                </ul>\n            </div>\n        </div>\n    </nav>\n    <section class=\"login-dark\">\n\n    <form action='/add_user' method='POST'>\n\n        <div class=\"form-signup\">\n            <centre>\n                <h4 style=\"text-align: center;\">REGISTER</h4>\n              </centre>\n              <br>\n            <div class=\"form-group\">\n                <input class=\"form-control\" type=\"text\" name=\"name\" placeholder=\"Name\" required>\n            </div>\n\n            <div class=\"form-group\">\n                <input class=\"form-control\" type=\"email\" name=\"uemail\" placeholder=\"Email\" required>\n            </div>\n\n            <div class=\"form-group\">\n                <input class=\"form-control\" type=\"password\" name=\"upassword\" placeholder=\"Password\" pattern=\".{8,}\"   required title=\"8 characters minimum\">\n            </div>\n           \n            <br>\n            {{recaptcha}}\n            </br>\n            <div class=\"form-group\">\n                <button class=\"btn btn-block\" data-bss-hover-animate=\"pulse\" type=\"submit\" style=\"background-color: #2980ef; color: white\">Register</button>\n            </div>       \n            <br>\n            \n            <p class=\"forgot\" >Already a member ? <a href='/'>Login</a></p>\n        </div>\n    </form>\n\n    <!-- Optional JavaScript -->\n    <!-- jQuery first, then Popper.js, then Bootstrap JS -->\n    <script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js\" integrity=\"sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n  \n  </body>\n</html>\n"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "README.md",
    "content": "# College Enquiry Chatbot #\n\n<br>\n\n![](https://img.shields.io/github/forks/Candida18/College-Enquiry-Chatbot?style=for-the-badge) &emsp; &emsp;\n![](https://img.shields.io/github/stars/Candida18/College-Enquiry-Chatbot?style=for-the-badge) &emsp; &emsp;\n![](https://img.shields.io/github/issues/Candida18/College-Enquiry-Chatbot?style=for-the-badge) &emsp; &emsp;\n![](https://img.shields.io/github/license/Candida18/College-Enquiry-Chatbot?style=for-the-badge) &emsp; &emsp;\n\n<br>\n\n## ABSTRACT \n\n<p align=\"justify\">This project aims to develop a college enquiry Chabot that answers any queries post by students like college details, course-related questions, location of the college, fee structure etc. The College Enquiry Chatbot project is built using machine learning algorithms that analyse user’s queries and understand the user's message. This System is a web application that provides answers to the query. Any individual just has to query through the bot. The answers are appropriate to what the user queries. The User can query any college-related activities through the system. The user does not have to personally go to the college for enquiry. The System analyses the question and then answers to the user. The user can also give their suggestions through the suggestion box. The system replies using an effective Graphical User Interface which implies that as if a real person is talking to the user.  </p>\n\n\n<br>\n\n## SOFTWARE REQUIREMENTS\n<ul type=\"square\">\n  <li> <b> Operating System : </b> Any version of Windows NT family (4.0 &above) </li>\n   &emsp;\n  <li> <b> Frontend : </b>\n       <p align=\"left\"> \n          <a href=\"https://www.w3.org/html/\" target=\"_blank\" > \n            <img src=\"https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg\" alt=\"html5\" width=\"40\" height=\"40\"/> \n          </a>    \n         &emsp;\n          <a href=\"https://www.w3schools.com/css/\" target=\"_blank\">\n            <img src=\"https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg\" alt=\"css3\" width=\"40\" height=\"40\"/> \n          </a> \n         &emsp;\n         <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript\" target=\"_blank\"> \n           <img src=\"https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg\" alt=\"javascript\" width=\"40\" height=\"40\"/>\n         </a>\n         &emsp;\n          <a href=\"https://getbootstrap.com\" target=\"_blank\"> \n            <img src=\"https://raw.githubusercontent.com/devicons/devicon/master/icons/bootstrap/bootstrap-plain-wordmark.svg\" alt=\"bootstrap\" width=\"40\" height=\"40\"/> \n          </a>\n        </p> \n  </li>\n <li> <b> Backend : </b>\n     <p align = \"left\">\n        <a href=\"https://www.python.org\" target=\"_blank\">\n          <img src=\"https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg\" alt=\"python\" width=\"40\" height=\"40\"/> \n       </a>\n     </p>\n   </li>\n    <li> <b> Framework : </b>\n     <p align=\"left\"> \n      <a href=\"https://flask.palletsprojects.com/\" target=\"_blank\"> \n        <img src=\"https://www.vectorlogo.zone/logos/pocoo_flask/pocoo_flask-icon.svg\" alt=\"flask\" width=\"40\" height=\"40\"/> \n       </a>\n    </p>\n   </li>\n  <li> <b> Database : </b>\n     <p align=\"left\"> \n       <a href=\"https://www.mysql.com/\" target=\"_blank\">\n         <img src=\"https://raw.githubusercontent.com/devicons/devicon/master/icons/mysql/mysql-original-wordmark.svg\" alt=\"mysql\" width=\"40\" height=\"40\"/> \n       </a> \n</p>\n   </li>\n  </ul>\n<br>\n\n## RUN USING\n`python app.py runserver`\n\n<br>\n\n## RESULTS : \n<ol>\n<h3> <li>  <b> Register Page : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/register.png\" alt=\"register\" /> </kbd>\n      </p>\n  </li>\n  \n   <h3> <li>  <b> Login Page : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/login.png\" alt=\"login\" /> </kbd>\n      </p>\n  </li>\n  \n <h3>   <li> <b> Forgot Password Page : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/forgot_password.png\" alt=\"forgot_password\" /> </kbd>\n      </p>\n  </li>\n  \n  \n <h3>  <li>  <b> Chatbot - Default Screen : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/default_screen_chatbot.png\" alt=\"default_screen_chatbot\" /> </kbd>\n      </p>\n  </li>\n  \n  <h3> <li>  <b> Chatbot - Query : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/chatbot_query_2.png\" alt=\"chatbot_query_2\" /> </kbd>\n      </p>\n  </li>\n  \n <h3>  <li>  <b> Chatbot - About Us : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/about_us.png\" alt=\"about_us\" /> </kbd>\n      </p>\n  </li>\n  \n  <h3>  <li> <b> Chatbot - Suggestion Box : </b></h3>\n     <p align=\"left\"> \n         <kbd><img src=\"https://github.com/Candida18/College-Enquiry-Chatbot/blob/main/CRCE%20Bot/Images_ss/suggestion_box.png\" alt=\"suggestion_box\" /> </kbd>\n      </p>\n  </li>\n  </ol>\n\n\n\n"
  }
]