Commit 171c1a65 authored by Chalika Mihiran's avatar Chalika Mihiran

changes done

parent 7d1c4d81
......@@ -35,7 +35,7 @@ firebase.initializeApp(firebaseConfig);
var password = document.getElementById("password");
const promise = auth.signInWithEmailAndPassword(email.value,password.value);
promise.catch(e=>alert(e.message));
alert("SignUp In Successfully");
// alert("SignUp In Successfully");
}
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Speech Master</title>
<meta content="" name="description"/>
<meta content="" name="keywords"/>
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon"/>
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon"/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet"/>
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet"/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"/>
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet"/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet"/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet"/>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet"/>
<!-- SLEEK CSS -->
<link id="sleek-css" rel="stylesheet" href="assets/css/sleek.css"/>
<link href="https://cdn.materialdesignicons.com/4.4.95/css/materialdesignicons.min.css" rel="stylesheet"/>
<meta name="description"
content="Responsive sidebar template with sliding effect and dropdown menu based on bootstrap 3"/>
<title>Sidebar template</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"/>
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet"/>
<link rel="stylesheet" href="style-sideBar.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="js/angular/angular.js"></script>
<script src="js/angular/angular-route.js"></script>
<script src="application.js"></script>
<style>
.bs-example {
margin: 20px;
}
.choose_file {
margin: 20px;
}
#div3 {
animation-timing-function: ease-in;
}
@keyframes mymove {
from {
left: 100px;
}
to {
left: 400px;
}
}
body {
animation: transitionIn 2s;
}
@keyframes transitionIn {
from {
opacity: 0;
transform: rotateX(-10deg);
}
to {
opacity: 1;
transform: rotateX(0);
}
}
</style>
<script>
$(document).ready(function () {
// Add minus icon for collapse element which is open by default
$(".collapse.show").each(function () {
$(this).prev(".card-header").find(".fa").addClass("fa-minus").removeClass("fa-plus");
});
// Toggle plus minus icon on show hide of collapse element
$(".collapse").on('show.bs.collapse', function () {
$(this).prev(".card-header").find(".fa").removeClass("fa-plus").addClass("fa-minus");
}).on('hide.bs.collapse', function () {
$(this).prev(".card-header").find(".fa").removeClass("fa-minus").addClass("fa-plus");
});
});
</script>
<!-- <style>-->
<!-- @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');-->
<!--body {-->
<!-- margin: 0;-->
<!-- padding: 0;-->
<!-- font-family: 'Open Sans', serif;-->
<!-- /* background: #eee */-->
<!--}-->
<!--.content {-->
<!-- width: 420px;-->
<!-- -->
<!--}-->
<!--.ratings {-->
<!-- /* background-color: #fff; */-->
<!-- padding: 54px;-->
<!-- /* border: 1px solid rgba(0, 0, 0, 0.1); */-->
<!-- /* box-shadow: 0px 10px 10px #E0E0E0 */-->
<!--}-->
<!--.product-rating {-->
<!-- font-size: 50px-->
<!--}-->
<!--.stars i {-->
<!-- font-size: 18px;-->
<!-- color: #28a745-->
<!--}-->
<!--.rating-text {-->
<!-- margin-top: 10px-->
<!--}-->
<!--.navbar-default{background:#3285D1;border-color: #3285D1;}-->
<!--/* .navbar-default .navbar-nav > li > a{color:#FFF;}-->
<!--.nav > li > a{margin:15px; font-size: 17px; color:#FFF;} */-->
<!--.nav .open > a, .nav .open > a:hover, -->
<!--.nav .open > a:focus,-->
<!--.nav > li > a:hover, .nav > li > a:focus{background-color:transparent !important;}-->
<!--.navbar-brand{ -->
<!-- margin: 15px !important;-->
<!-- padding: 13px !important;-->
<!-- /* color: #fff !important; */-->
<!-- font-size: 2em !important;-->
<!-- font-weight: bold !Important;-->
<!-- }-->
<!-- -->
<!--.navbar-toggle{margin-top:20px !important;}-->
<!--/* .dropdown-menu{background:#fff !important;} */-->
<!--.navbar-login-->
<!--{-->
<!-- width: 350px;-->
<!-- padding: 10px;-->
<!-- padding-bottom: 0px;-->
<!--}-->
<!--.navbar-login-session-->
<!--{-->
<!-- padding: 10px;-->
<!-- padding-bottom: 0px;-->
<!-- padding-top: 0px;-->
<!--}-->
<!--.icon-size-->
<!--{-->
<!-- font-size: 87px;-->
<!--}-->
<!-- </style>-->
</head>
<body ng-app="myApp" ng-controller="MainController">
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">SPEECH MASTER</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto " href="#score">Score</a></li>
<li><a class="nav-link scrollto" href="reportFinal.html">Reports</a></li>
<li><a class="nav-link scrollto" href="#">Feedbacks</a></li>
<li><a class="nav-link scrollto" href="#">Contribute</a></li>
<!-- <li class="dropdown"><a href="#"><span>Customized Analysis</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Content</a></li>
<li><a href="#">Expressions</a></li>
<li><a href="#">Grammar</a></li>
<li><a href="#">Flow of the speech</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<!-- <li><a class="getstarted scrollto" href="#about">Get Started</a></li> -->
<div class="navbar-right ">
<ul class="nav navbar-nav">
<!-- User Account -->
<li class="dropdown user-menu">
<button href="#" class="dropdown-toggle nav-link" data-toggle="dropdown">
<span class="d-none d-lg-inline-block">Lakshan Chathurnga</span>
<img src="assets/img/user/user.png" class="user-image" alt="User Image"/>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<!-- User image -->
<li class="dropdown-header">
<img src="assets/img/user/user.png" class="img-circle" alt="User Image"/>
<div class="d-inline-block">
Lakshan Chathurnga <small class="pt-1">lakshan@gmail.com</small>
</div>
</li>
<li>
<a href="user-profile.html">
<i class="mdi mdi-account"></i> My Profile
</a>
</li>
<li>
<a href="#">
<i class="mdi mdi-email"></i> Message
</a>
</li>
<li>
<a href="#"> <i class="mdi mdi-diamond-stone"></i> Projects </a>
</li>
<li class="right-sidebar-in">
<a href="javascript:0"> <i class="mdi mdi-settings"></i> Setting </a>
</li>
<li class="dropdown-footer">
<a href="index.html"> <i class="mdi mdi-logout"></i> Log Out </a>
</li>
</ul>
</li>
</ul>
</div>
</ul>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<div id="hero" class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<main class="page-content">
<div class="container-fluid">
<br><br><br><br><br>
<h1 class="text-center">SPEECH MASTER</h1>
<br>
<div id="div1" style="position: relative;
animation: mymove 5s infinite;">
<h5>Upload your speech here!</h5>
</div>
<div class="choose_file">
<form>
<!-- <div class="custom-file">-->
<!-- <input type="file" class="custom-file-input" id="customFile" onchange="angular.element(this).scope().selectAudioFile(this)">-->
<!-- <label class="custom-file-label" for="customFile">{{audioFile ? audioFile.name+' File chosen':'Choose audio file'}}</label>-->
<!-- </div>-->
<div class="custom-file">
<input type="file" class="custom-file-input" id="customFile2"
onchange="angular.element(this).scope().selectVideoFile(this)">
<label class="custom-file-label" for="customFile2">{{audioFile ? audioFile.name+' File
chosen':'Choose video file'}}</label>
</div>
</form>
</div>
<div class="d-flex justify-content-center pt-3 pb-3">
<form id="labnol" method="get" action="http://www.labnol.org">
<div class="speech">
<input type="text" name="s" id="transcript" placeholder="Say the topic of speech"
ng-model="topic"/>
<img onclick="startDictation()" src="https://i.imgur.com/cHidSVu.gif"/>
</div>
</form>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="exampleFormControlTextarea1">Audio text</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="5"
ng-model="audioText"></textarea>
</div>
</div>
</div>
<div class="d-flex justify-content-center">
<button type="button" class="btn btn-primary" ng-click="processTheSpeech()">
Continue
<div class="spinner-border text-center" role="status" ng-if="loading">
<span class="sr-only">Loading...</span>
</div>
</button>
</div>
<hr/>
<!-- <div class="d-flex justify-content-center">-->
<!-- <div class="content text-center">-->
<!-- <div class="ratings"><span class="product-rating">4.6</span><span>/5</span>-->
<!-- <div class="stars"><i class="fa fa-star"></i> <i class="fa fa-star"></i> <i-->
<!-- class="fa fa-star"></i> <i class="fa fa-star"></i></div>-->
<!-- <div class="rating-text"><span>46 ratings & 15 reviews</span></div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
</main>
<h2 class="text-center">See your comments and suggestions!...</h2>
<div class="bs-example d-flex justify-content-center">
<!-- Button HTML (to Trigger Modal) -->
<button type="button" class="btn btn-lg btn-outline-primary" data-toggle="modal" data-target="#myModal">
Emotions
</button>
<button type="button" class="btn btn-lg btn-outline-primary" data-toggle="modal" data-target="#myModal1">
Content
</button>
<button type="button" class="btn btn-lg btn-outline-primary" data-toggle="modal" data-target="#myModal2">
Flow of the speech
</button>
<button type="button" class="btn btn-lg btn-outline-primary" data-toggle="modal" data-target="#myModal3">
Grammar
</button>
<!-- Modal HTML -->
<div id="myModal" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Comments and Suggestions</h5>
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
<h1>Emotions</h1>
</div>
<div class="card-body">
<h5 class="card-title">Emotion throughout the video</h5>
<!-- <p class="card-text">Score: {{emotionScore}}</p> -->
<div>
<canvas id="myChart"></canvas>
</div>
<hr>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">OK, Got it!</button>
</div>
</div>
</div>
</div>
<!-- Modal HTML -->
<div id="myModal1" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Comments and Suggestions</h5>
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
<h1>Content </h1>
</div>
<div class="card-body">
<br>
<h2>Clearness</h2>
<br>
<h5 class="card-title">Identified over complex words</h5>
<!-- <p class="card-text">Score: {{clearnerssWordsResponse.score}}</p> -->
<p class="card-text">{{clearnerssWordsResponse.message}}</p>
<hr>
<h5 class="card-title">Identified over complex sentences</h5>
<!-- <p class="card-text">Score: {{clearnerssSentenceResponse.score}}</p> -->
<p class="card-text">{{clearnerssSentenceResponse.message}}</p>
<hr>
<br>
<h2>Introduction</h2>
<br>
<h5 class="card-title">Identified Introduction</h5>
<!-- <p class="card-text">Score: {{introductionFuncResponse.score}}</p> -->
<p class="card-text">{{introductionFuncResponse.message}}</p>
<hr>
<h5 class="card-title">Identified best uses for introduction</h5>
<!-- <p class="card-text">Score: {{introductionFuncResponse.score}}</p> -->
<!-- <p class="card-text">{{introductionBestUsesFuncResponse.message}}</p>-->
<p class="card-text">Identified best uses : According to a recent study</p>
<hr>
<h5 class="card-title">Identified questions that user used in
introduction</h5>
<!-- <p class="card-text">Score: {{introductionBestUsesFuncResponse.score}}</p> -->
<p class="card-text"><span
ng-repeat="comment in introductionBestUsesFuncResponse.message track by $index">{{comment}}</span>
</p>
<hr>
<br>
<h2>Conclusion</h2>
<br>
<h5 class="card-title">Identified conclusion</h5>
<!-- <p class="card-text">Score: {{conclusionResponse.score}}</p> -->
<p class="card-text">{{conclusionResponse.message}}</p>
<hr>
<h5 class="card-title">Identified best uses for conclusion</h5>
<!-- <p class="card-text">Score: {{commentsResponse.score}}</p> -->
<p class="card-text"><span
ng-repeat="comment in commentsResponse.message track by $index">{{comment}}</span>
</p>
<hr>
<h5 class="card-title">Identified questions that user used in
conclusion</h5>
<!-- <p class="card-text">Score: {{questionsResponse.score}}</p> -->
<p class="card-text"><span
ng-repeat="comment in questionsResponse.message track by $index">{{comment}}</span>
</p>
<hr>
<br>
<h2>Other</h2>
<br>
<h5 class="card-title">Keywords in the speech</h5>
<!-- <p class="card-text">Score: {{keywordExtractionResponse.score}}</p> -->
<p class="card-text"><span
ng-repeat="comment in keywordExtractionResponse.message track by $index">{{comment}}</span>
</p>
<hr>
<h5 class="card-title">Content relativity </h5>
<!-- <p class="card-text">Score: {{synonymsFunctionResponse.score}}</p> -->
<p class="card-text">{{synonymsFunctionResponse.message}}</p>
<hr>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">OK, Got it!</button>
</div>
</div>
</div>
</div>
<!-- Modal HTML -->
<div id="myModal2" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Comments and Suggestions</h5>
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="row mt-2">
<div class="col">
<div class="card">
<div class="card-header">
<h1>Flows of the speech</h1>
</div>
<div class="card-body">
<h5 class="card-title">Double words</h5>
<!-- <p class="card-text">Score: {{doubleWordsFuncResponse.score}}</p> -->
<p class="card-text"><span
ng-repeat="comment in doubleWordsFuncResponse.message track by $index">{{comment}}</span>
</p>
<!-- <p class="card-text">{{doubleWordsFuncResponse.message}}</p>-->
<hr>
<h5 class="card-title">Filler Words in your Speech</h5>
<p class="card-text">{{fillerWordsFuncResponse.message}}</p>
<hr>
<h5 class="card-title">Pause count</h5>
<!-- <p class="card-text">Score: {{countPausesResponse.score}}</p> -->
<p class="card-text">{{countPausesResponse.message}}</p>
<hr>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">OK, Got it!</button>
</div>
</div>
</div>
</div>
<!-- Modal HTML -->
<div id="myModal3" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Comments and Suggestions</h5>
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="row mt-2">
<div class="col">
<div class="card">
<div class="card-header">
<h1>Grammar</h1>
</div>
<div class="card-body">
<h5 class="card-title">Grammatical Richness</h5>
<!-- <p class="card-text">Score: {{grammarFuncResponse.score}}</p> -->
<p class="card-text"><span
ng-repeat="comment in grammarFuncResponse.message track by $index">{{comment}}</span>
</p>
<hr>
<!-- <h5 class="card-title">GingerIt</h5>-->
<h5> Grammatical Corrections</h5>
<p class="card-title text-primary"> Correction | Action | Mistake</p>
<!-- <p class="card-text">Score: {{gingerItParseResponse.score}}</p> -->
<p class="card-text"
ng-repeat="comment in gingerItParseResponse.message.corrections track by $index">
{{comment.correct}} | {{comment.definition}} | {{comment.text}}</p>
<p class="card-text">{{gingerItParseResponse.message.result}}</p>
<p class="card-text">{{gingerItParseResponse.message.text}}</p>
<hr>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">OK, Got it!</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<br><br><br> <br>-->
<!-- Score table -->
<div id="score">
<div class="container">
<br/><br/>
<h1 class="text-center">Score Card</h1>
<div class="bs-example">
<table class="table">
<thead class="thead-dark">
<tr>
<th>JUDGING ITEMS</th>
<th>SUB JUDGING ITEMS</th>
<th>SCORE</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="4">Speech Development</td>
<td>Clearness</td>
<td><p class="card-text">{{clearnerssWordsResponse.score}}</p></td>
</tr>
<tr>
<td>Conclusion</td>
<td><p class="card-text">{{conclusionResponse.score}}</p></td>
</tr>
<tr>
<td>Introduction</td>
<td><p class="card-text">{{introductionFuncResponse.score}}</p></td>
</tr>
<!-- <tr>-->
<!-- <td>Keyword Extraction</td>-->
<!-- <td> <p class="card-text">{{keywordExtractionResponse.score}}</p></td>-->
<!-- </tr>-->
<tr>
<td>Content Relativity</td>
<td><p class="card-text">{{synonymsFunctionResponse.score}}</p></td>
</tr>
<tr>
<td rowspan="2">Correctness</td>
<td>Grammatical Accuracy</td>
<td><p class="card-text">{{gingerItParseResponse.score}}</p></td>
</tr>
<tr>
<td>Grammartical Richness</td>
<td><p class="card-text">{{gingerItParseResponse.score}}</p></td>
</tr>
<tr>
<td rowspan="1">Physical</td>
<td>Correct Usage of Expressions</td>
<td><p class="card-text">{{emotionScore}}</p></td>
</tr>
<tr>
<td rowspan="3">Voice</td>
<td>Silence</td>
<td><p class="card-text">{{countPausesResponse.score}}</p></td>
</tr>
<tr>
<td>Filler Words</td>
<td><p class="card-text">{{fillerWordsFuncResponse.score}}</p></td>
</tr>
<tr>
<td>Repeted Words</td>
<td><p class="card-text">{{doubleWordsFuncResponse.score}}</p></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- end score table -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br/>
<br/><br/>
<strong>Phone:</strong> +94 705694853<br/>
<strong>Email:</strong> janithaalas@gmail.com<br/>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<p>
Tamen quem nulla quae legam multos aute sint culpa legam noster
magna
</p>
<form action="" method="post">
<input type="email" name="email"/><input type="submit" value="Subscribe"/>
</form>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<script>
$("#myModal").on("show.bs.modal", function(event){
// Place the returned HTML into the selected element
$(this).find(".modal-body").load("/examples/php/remote.php");
});
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Speech Master</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet" />
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet" />
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<script src="js/angular/angular.js"></script>
<script src="js/angular/angular-route.js"></script>
<script src="application.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Speech Master</title>
<meta content="" name="description"/>
<meta content="" name="keywords"/>
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon"/>
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon"/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet"/>
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet"/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"/>
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet"/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet"/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet"/>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet"/>
<script src="js/angular/angular.js"></script>
<script src="js/angular/angular-route.js"></script>
<script src="application.js"></script>
</head>
<body style="
position: relative;
background-image: url(background1.jpg);
background-repeat: no-repeat;
background-size: 100% 100vh;
" ng-app="myApp" ng-controller="MainController">
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo">
<a href="index.html"><b>SPEECH MASTER</b></a>
</h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<!-- <li>
<a class="nav-link scrollto o" href="#portfolio">Portfolio</a>
</li>
<li><a class="nav-link scrollto" href="#team">Team</a></li> -->
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="login.html">Get Started</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
<h1 class="logo">
<a href="index.html"><b>SPEECH MASTER</b></a>
</h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<!-- <li>
<a class="nav-link scrollto o" href="#portfolio">Portfolio</a>
</li>
<li><a class="nav-link scrollto" href="#team">Team</a></li> -->
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="login.html">Get Started</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container position-relative" data-aos="fade-up" data-aos-delay="100">
<div class="row justify-content-center">
<div class="col-xl-7 col-lg-9 text-center">
<h1>SPEAK WITH CONFIDENT</h1>
<h2>Get your toastmaster experience while statying home</h2>
<div class="row justify-content-center">
<div class="col-xl-7 col-lg-9 text-center">
<h1>SPEAK WITH CONFIDENT</h1>
<h2>Get your toastmaster experience while statying home</h2>
</div>
</div>
</div>
<div class="text-center">
<a href="login.html" class="btn-get-started scrollto">Get Started</a>
</div>
<div class="row icon-boxes">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="ri-english-input"></i></div>
<h4 class="title"><a href="">MORE ENGLISH LITERACY</a></h4>
<p class="description">
Improving the English literacy through developing the English Public Speaking Ability.
</p>
</div>
<div class="text-center">
<a href="login.html" class="btn-get-started scrollto">Get Started</a>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bi-emoji-sunglasses"></i></div>
<h4 class="title"><a href="">BUILD CONFIDENCE</a></h4>
<p class="description">
Building confidence by giving self practicing attempts.
</p>
</div>
</div>
<div class="row icon-boxes">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="ri-english-input"></i></div>
<h4 class="title"><a href="">MORE ENGLISH LITERACY</a></h4>
<p class="description">
Improving the English literacy through developing the English Public Speaking Ability.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="400">
<div class="icon-box">
<div class="icon"><i class="bi-pencil-square"></i></div>
<h4 class="title"><a href="">SELF LEARNING</a></h4>
<p class="description">
LChance to self learning with your own ways.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bi-emoji-sunglasses"></i></div>
<h4 class="title"><a href="">BUILD CONFIDENCE</a></h4>
<p class="description">
Building confidence by giving self practicing attempts.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="500">
<div class="icon-box">
<div class="icon"><i class="bi-arrow-repeat"></i></div>
<h4 class="title"><a href="">UNLIMITED PRACTICING</a></h4>
<p class="description">
practice makes a better public speaker.
</p>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
data-aos-delay="400">
<div class="icon-box">
<div class="icon"><i class="bi-pencil-square"></i></div>
<h4 class="title"><a href="">SELF LEARNING</a></h4>
<p class="description">
LChance to self learning with your own ways.
</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
data-aos-delay="500">
<div class="icon-box">
<div class="icon"><i class="bi-arrow-repeat"></i></div>
<h4 class="title"><a href="">UNLIMITED PRACTICING</a></h4>
<p class="description">
practice makes a better public speaker.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Hero -->
</section>
<!-- End Hero -->
<main id="main">
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
<p>
Break barriers not your budget.
</p>
</div>
<div class="row content">
<div class="col-lg-6">
<p>
Speech Matter is a nonprofitable web site that will guides you to be a better public speaker. This self
learning educational site provides a platform to practice public speeches online with customized feedback.
This modern site is providing this service since 2021.
</p>
<ul>
<li>
<i class="ri-check-double-line"></i> Unlimited practicing attempts
</li>
<li>
<i class="ri-check-double-line"></i> Free feedbacks
</li>
<li>
<i class="ri-check-double-line"></i> Customized guiding
</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
Feedbacks are given under a cirteria. You can get feedbacks under different categories. Toastmasters are
leading guider of Public speaking. This website gives the feedbacks and scores under Toastmasters scoring
mechanism.
</p>
<a href="#" class="btn-learn-more">Learn More</a>
</div>
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
<p>
Break barriers not your budget.
</p>
</div>
<div class="row content">
<div class="col-lg-6">
<p>
Speech Matter is a nonprofitable web site that will guides you to be a better public speaker.
This self
learning educational site provides a platform to practice public speeches online with customized
feedback.
This modern site is providing this service since 2021.
</p>
<ul>
<li>
<i class="ri-check-double-line"></i> Unlimited practicing attempts
</li>
<li>
<i class="ri-check-double-line"></i> Free feedbacks
</li>
<li>
<i class="ri-check-double-line"></i> Customized guiding
</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
Feedbacks are given under a cirteria. You can get feedbacks under different categories.
Toastmasters are
leading guider of Public speaking. This website gives the feedbacks and scores under
Toastmasters scoring
mechanism.
</p>
<a href="#" class="btn-learn-more">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts section-bg">
<div class="container">
<div class="row justify-content-end">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<div class="container">
<div class="row justify-content-end">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="20" data-purecounter-duration="2"
class="purecounter"></span>
<p>Criterias</p>
</div>
</div>
class="purecounter"></span>
<p>Criterias</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="15" data-purecounter-duration="2"
class="purecounter"></span>
<p>Major areas</p>
</div>
</div>
class="purecounter"></span>
<p>Major areas</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="12" data-purecounter-duration="2"
class="purecounter"></span>
<p>Experts</p>
</div>
</div>
class="purecounter"></span>
<p>Experts</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="216" data-purecounter-duration="2"
class="purecounter"></span>
<p>Users</p>
class="purecounter"></span>
<p>Users</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Counts Section -->
<!-- ======= About Video Section ======= -->
<section id="about-video" class="about-video">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-6 video-box align-self-baseline" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/about-video.jpg" class="img-fluid" alt="" />
<a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="glightbox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a>
</div>
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-6 video-box align-self-baseline" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/about-video.jpg" class="img-fluid" alt=""/>
<a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="glightbox play-btn mb-4"
data-vbtype="video"
data-autoplay="true"></a>
</div>
<div class="col-lg-6 pt-3 pt-lg-0 content" data-aos="fade-left" data-aos-delay="100">
<h3>
Public Speaking Tips
</h3>
<p class="fst-italic">
Public speaking is an art everybody needs to master these days for many reasons, including academic success. It was one of the hardest things for me as a university student. I still remember my first oral presentation: I felt like a deer in the headlights. I thought I was doomed to fail even before I started. Of course, it got better with time. For those of you who confront the same problem, I have come up with a list of public speaking tips you might find useful:
</p>
<ul>
<li>
<i class="bx bx-check-double"></i> Build Your Enthusiasm
</li>
<li>
<i class="bx bx-check-double"></i> Work for It
</li>
<li>
<i class="bx bx-check-double"></i> Master the Speech
</li>
<li>
<i class="bx bx-check-double"></i> Engage Your Audience
</li>
<li>
<i class="bx bx-check-double"></i> Do Things Your Way
</li>
<li>
<i class="bx bx-check-double"></i> Team up Smartly
</li>
</ul>
<p>
These are some of the public speaking tips I successfully tried. Of course, every student’s experience is different. It’s essential to learn from every experience and improve your presentation skills little by little
</p>
</div>
<div class="col-lg-6 pt-3 pt-lg-0 content" data-aos="fade-left" data-aos-delay="100">
<h3>
Public Speaking Tips
</h3>
<p class="fst-italic">
Public speaking is an art everybody needs to master these days for many reasons, including
academic success. It was one of the hardest things for me as a university student. I still
remember my first oral presentation: I felt like a deer in the headlights. I thought I was
doomed to fail even before I started. Of course, it got better with time. For those of you who
confront the same problem, I have come up with a list of public speaking tips you might find
useful:
</p>
<ul>
<li>
<i class="bx bx-check-double"></i> Build Your Enthusiasm
</li>
<li>
<i class="bx bx-check-double"></i> Work for It
</li>
<li>
<i class="bx bx-check-double"></i> Master the Speech
</li>
<li>
<i class="bx bx-check-double"></i> Engage Your Audience
</li>
<li>
<i class="bx bx-check-double"></i> Do Things Your Way
</li>
<li>
<i class="bx bx-check-double"></i> Team up Smartly
</li>
</ul>
<p>
These are some of the public speaking tips I successfully tried. Of course, every student’s
experience is different. It’s essential to learn from every experience and improve your
presentation skills little by little
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End About Video Section -->
......@@ -323,766 +337,531 @@ background-size: 100% 100vh;
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>why do you speak ?</h2>
<p>
You can speak well if your tongue can deliver the message of your heart.
</p>
</div>
<div class="testimonials-slider swiper-container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
It’s much easier to be convincing if you care about your topic. Figure out what’s important to you about your message and speak from the heart
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="" />
<h3>Nicholas Boothman</h3>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>why do you speak ?</h2>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
There are always three speeches, for every one you actually gave. The one you practiced, the one you gave, and the one you wish you gave.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
You can speak well if your tongue can deliver the message of your heart.
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="" />
<h3>Dale Carnegie</h3>
</div>
</div>
<!-- end testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
There are three things to aim at in public speaking: first, to get into your subject, then to get your subject into yourself, and lastly, to get your subject into the heart of your audience.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="" />
<h3>Alexander Gregg</h3>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Speech is power. Speech is to persuade, to convert, to compel. It is to bring another out of his bad sense into your good sense.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p><br>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="" />
<h3>Dr. Mardy Grothe</h3>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Our language is the reflection of ourselves. A language is an exact reflection of the character and growth of its speakers.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p><br>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="" />
<h3> Jim Rohn</h3>
</div>
<div class="testimonials-slider swiper-container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
It’s much easier to be convincing if you care about your topic. Figure out what’s
important to you about your message and speak from the heart
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt=""/>
<h3>Nicholas Boothman</h3>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
There are always three speeches, for every one you actually gave. The one you practiced,
the one you gave, and the one you wish you gave.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt=""/>
<h3>Dale Carnegie</h3>
</div>
</div>
<!-- end testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
There are three things to aim at in public speaking: first, to get into your subject,
then to get your subject into yourself, and lastly, to get your subject into the heart
of your audience.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt=""/>
<h3>Alexander Gregg</h3>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Speech is power. Speech is to persuade, to convert, to compel. It is to bring another
out of his bad sense into your good sense.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p><br>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt=""/>
<h3>Dr. Mardy Grothe</h3>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Our language is the reflection of ourselves. A language is an exact reflection of the
character and growth of its speakers.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p><br>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt=""/>
<h3> Jim Rohn</h3>
</div>
</div>
<!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
<!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Sevices</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-blue">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,521.0016835830174C376.1290562159157,517.8887921683347,466.0731472004068,529.7835943286574,510.70327084640275,468.03025145048787C554.3714126377745,407.6079735673963,508.03601936045806,328.9844924480964,491.2728898941984,256.3432110539036C474.5976632858925,184.082847569629,479.9380746630129,96.60480741107993,416.23090153303,58.64404602377083C348.86323505073057,18.502131276798302,261.93793281208167,40.57373210992963,193.5410806939664,78.93577620505333C130.42746243093433,114.334589627462,98.30271207620316,179.96522072025542,76.75703585869454,249.04625023123273C51.97151888228291,328.5150500222984,13.704378332031375,421.85034740162234,66.52175969318436,486.19268352777647C119.04800174914682,550.1803526380478,217.28368757567262,524.383925680826,300,521.0016835830174">
</path>
</svg>
<i class="bx bx-file"></i>
</div>
<h4><a href="">Content Analyzing</a></h4>
<p>
&emsp;&emsp;&emsp;&emsp;Aanalyze the content of the speech.&emsp;&emsp;&emsp;&emsp;
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box iconbox-orange">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,582.0697525312426C382.5290701553225,586.8405444964366,449.9789794690241,525.3245884688669,502.5850820975895,461.55621195738473C556.606425686781,396.0723002908107,615.8543463187945,314.28637112970534,586.6730223649479,234.56875336149918C558.9533121215079,158.8439757836574,454.9685369536778,164.00468322053177,381.49747125262974,130.76875717737553C312.15926192815925,99.40240125094834,248.97055460311594,18.661163978235184,179.8680185752513,50.54337015887873C110.5421016452524,82.52863877960104,119.82277516462835,180.83849132639028,109.12597500060166,256.43424936330496C100.08760227029461,320.3096726198365,92.17705696193138,384.0621239912766,124.79988738764834,439.7174275375508C164.83382741302287,508.01625554203684,220.96474134820875,577.5009287672846,300,582.0697525312426">
</path>
</svg>
<i class="bi-emoji-smile"></i>
</div>
<h4><a href="">Facial Expressions Analyzing</a></h4>
<p>
Analyze the facial expressions according to the speech
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box iconbox-pink">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,541.5067337569781C382.14930387511276,545.0595476570109,479.8736841581634,548.3450877840088,526.4010558755058,480.5488172755941C571.5218469581645,414.80211281144784,517.5187510058486,332.0715597781072,496.52539010469104,255.14436215662573C477.37192572678356,184.95920475031193,473.57363656557914,105.61284051026155,413.0603344069578,65.22779650032875C343.27470386102294,18.654635553484475,251.2091493199835,5.337323636656869,175.0934190732945,40.62881213300186C97.87086631185822,76.43348514350839,51.98124368387456,156.15599469081315,36.44837278890362,239.84606092416172C21.716077023791087,319.22268207091537,43.775223500013084,401.1760424656574,96.891909868211,461.97329694683043C147.22146801428983,519.5804099606455,223.5754009179313,538.201503339737,300,541.5067337569781">
</path>
</svg>
<i class="bi-check-circle"></i>
</div>
<h4><a href="">Grammar Checking</a></h4>
<p>
Check the grammar of the speech and grammar efficiency
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-yellow">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,503.46388370962813C374.79870501325706,506.71871716319447,464.8034551963731,527.1746412648533,510.4981551193396,467.86667711651364C555.9287308511215,408.9015244558933,512.6030010748507,327.5744911775523,490.211057578863,256.5855673507754C471.097692560561,195.9906835881958,447.69079081568157,138.11976852964426,395.19560036434837,102.3242989838813C329.3053358748298,57.3949838291264,248.02791733380457,8.279543830951368,175.87071277845988,42.242879143198664C103.41431057327972,76.34704239035025,93.79494320519305,170.9812938413882,81.28167332365135,250.07896920659033C70.17666984294237,320.27484674793965,64.84698225790005,396.69656628748305,111.28512138212992,450.4950937839243C156.20124167950087,502.5303643271138,231.32542653798444,500.4755392045468,300,503.46388370962813">
</path>
</svg>
<i class="bi-soundwave"></i>
</div>
<h4><a href="">Filler Words Tracking</a></h4>
<p>
&emsp;&emsp;&emsp;&emsp;Identify the filler words in the speech&emsp;&emsp;&emsp;&emsp;
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box iconbox-red">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,532.3542879108572C369.38199826031484,532.3153073249985,429.10787420159085,491.63046689027357,474.5244479745417,439.17860296908856C522.8885846962883,383.3225815378663,569.1668002868075,314.3205725914397,550.7432151929288,242.7694973846089C532.6665558377875,172.5657663291529,456.2379748765914,142.6223662098291,390.3689995646985,112.34683881706744C326.66090330228417,83.06452184765237,258.84405631176094,53.51806209861945,193.32584062364296,78.48882559362697C121.61183558270385,105.82097193414197,62.805066853699245,167.19869350419734,48.57481801355237,242.6138429142374C34.843463184063346,315.3850353017275,76.69343916112496,383.4422959591041,125.22947124332185,439.3748458443577C170.7312796277747,491.8107796887764,230.57421082200815,532.3932930995766,300,532.3542879108572">
</path>
</svg>
<i class="bi-card-checklist"></i>
</div>
<h4><a href="">Customized Report</a></h4>
<p>
Provide customized report under the Toastmasters cirteria.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-teal">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,566.797414625762C385.7384707136149,576.1784315230908,478.7894351017131,552.8928747891023,531.9192734346935,484.94944893311C584.6109503024035,417.5663521118492,582.489472248146,322.67544863468447,553.9536738515405,242.03673114598146C529.1557734026468,171.96086150256528,465.24506316201064,127.66468636344209,395.9583748389544,100.7403814666027C334.2173773831606,76.7482773500951,269.4350130405921,84.62216499799875,207.1952322260088,107.2889140133804C132.92018162631612,134.33871894543012,41.79353780512637,160.00259165414826,22.644507872594943,236.69541883565114C3.319112789854554,314.0945973066697,72.72355303640163,379.243833228382,124.04198916343866,440.3218312028393C172.9286146004772,498.5055451809895,224.45579914871206,558.5317968840102,300,566.797414625762">
</path>
</svg>
<i class="ri-line-chart-line"></i>></i>
</div>
<h4><a href="">Progress Analyzing</a></h4>
<p>
&emsp;&emsp;&emsp;&emsp; Analyze the user progress overtime.&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Sevices Section -->
<!-- ======= Portfolio Section ======= -->
<!-- <section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Portfolio</h2>
<p>
Magnam dolores commodi suscipit. Necessitatibus eius consequatur
ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam
quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea.
Quia fugiat sit in iste officiis commodi quidem hic quas.
</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="150">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="300">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Sevices</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-blue">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,521.0016835830174C376.1290562159157,517.8887921683347,466.0731472004068,529.7835943286574,510.70327084640275,468.03025145048787C554.3714126377745,407.6079735673963,508.03601936045806,328.9844924480964,491.2728898941984,256.3432110539036C474.5976632858925,184.082847569629,479.9380746630129,96.60480741107993,416.23090153303,58.64404602377083C348.86323505073057,18.502131276798302,261.93793281208167,40.57373210992963,193.5410806939664,78.93577620505333C130.42746243093433,114.334589627462,98.30271207620316,179.96522072025542,76.75703585869454,249.04625023123273C51.97151888228291,328.5150500222984,13.704378332031375,421.85034740162234,66.52175969318436,486.19268352777647C119.04800174914682,550.1803526380478,217.28368757567262,524.383925680826,300,521.0016835830174">
</path>
</svg>
<i class="bx bx-file"></i>
</div>
<h4><a href="">Content Analyzing</a></h4>
<p>
&emsp;&emsp;&emsp;&emsp;Aanalyze the content of the speech.&emsp;&emsp;&emsp;&emsp;
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box iconbox-orange">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,582.0697525312426C382.5290701553225,586.8405444964366,449.9789794690241,525.3245884688669,502.5850820975895,461.55621195738473C556.606425686781,396.0723002908107,615.8543463187945,314.28637112970534,586.6730223649479,234.56875336149918C558.9533121215079,158.8439757836574,454.9685369536778,164.00468322053177,381.49747125262974,130.76875717737553C312.15926192815925,99.40240125094834,248.97055460311594,18.661163978235184,179.8680185752513,50.54337015887873C110.5421016452524,82.52863877960104,119.82277516462835,180.83849132639028,109.12597500060166,256.43424936330496C100.08760227029461,320.3096726198365,92.17705696193138,384.0621239912766,124.79988738764834,439.7174275375508C164.83382741302287,508.01625554203684,220.96474134820875,577.5009287672846,300,582.0697525312426">
</path>
</svg>
<i class="bi-emoji-smile"></i>
</div>
<h4><a href="">Facial Expressions Analyzing</a></h4>
<p>
Analyze the facial expressions according to the speech
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box iconbox-pink">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,541.5067337569781C382.14930387511276,545.0595476570109,479.8736841581634,548.3450877840088,526.4010558755058,480.5488172755941C571.5218469581645,414.80211281144784,517.5187510058486,332.0715597781072,496.52539010469104,255.14436215662573C477.37192572678356,184.95920475031193,473.57363656557914,105.61284051026155,413.0603344069578,65.22779650032875C343.27470386102294,18.654635553484475,251.2091493199835,5.337323636656869,175.0934190732945,40.62881213300186C97.87086631185822,76.43348514350839,51.98124368387456,156.15599469081315,36.44837278890362,239.84606092416172C21.716077023791087,319.22268207091537,43.775223500013084,401.1760424656574,96.891909868211,461.97329694683043C147.22146801428983,519.5804099606455,223.5754009179313,538.201503339737,300,541.5067337569781">
</path>
</svg>
<i class="bi-check-circle"></i>
</div>
<h4><a href="">Grammar Checking</a></h4>
<p>
Check the grammar of the speech and grammar efficiency
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-yellow">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,503.46388370962813C374.79870501325706,506.71871716319447,464.8034551963731,527.1746412648533,510.4981551193396,467.86667711651364C555.9287308511215,408.9015244558933,512.6030010748507,327.5744911775523,490.211057578863,256.5855673507754C471.097692560561,195.9906835881958,447.69079081568157,138.11976852964426,395.19560036434837,102.3242989838813C329.3053358748298,57.3949838291264,248.02791733380457,8.279543830951368,175.87071277845988,42.242879143198664C103.41431057327972,76.34704239035025,93.79494320519305,170.9812938413882,81.28167332365135,250.07896920659033C70.17666984294237,320.27484674793965,64.84698225790005,396.69656628748305,111.28512138212992,450.4950937839243C156.20124167950087,502.5303643271138,231.32542653798444,500.4755392045468,300,503.46388370962813">
</path>
</svg>
<i class="bi-soundwave"></i>
</div>
<h4><a href="">Filler Words Tracking</a></h4>
<p>
&emsp;&emsp;&emsp;&emsp;Identify the filler words in the speech&emsp;&emsp;&emsp;&emsp;
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box iconbox-red">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,532.3542879108572C369.38199826031484,532.3153073249985,429.10787420159085,491.63046689027357,474.5244479745417,439.17860296908856C522.8885846962883,383.3225815378663,569.1668002868075,314.3205725914397,550.7432151929288,242.7694973846089C532.6665558377875,172.5657663291529,456.2379748765914,142.6223662098291,390.3689995646985,112.34683881706744C326.66090330228417,83.06452184765237,258.84405631176094,53.51806209861945,193.32584062364296,78.48882559362697C121.61183558270385,105.82097193414197,62.805066853699245,167.19869350419734,48.57481801355237,242.6138429142374C34.843463184063346,315.3850353017275,76.69343916112496,383.4422959591041,125.22947124332185,439.3748458443577C170.7312796277747,491.8107796887764,230.57421082200815,532.3932930995766,300,532.3542879108572">
</path>
</svg>
<i class="bi-card-checklist"></i>
</div>
<h4><a href="">Customized Report</a></h4>
<p>
Provide customized report under the Toastmasters cirteria.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="" />
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-teal">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5"
d="M300,566.797414625762C385.7384707136149,576.1784315230908,478.7894351017131,552.8928747891023,531.9192734346935,484.94944893311C584.6109503024035,417.5663521118492,582.489472248146,322.67544863468447,553.9536738515405,242.03673114598146C529.1557734026468,171.96086150256528,465.24506316201064,127.66468636344209,395.9583748389544,100.7403814666027C334.2173773831606,76.7482773500951,269.4350130405921,84.62216499799875,207.1952322260088,107.2889140133804C132.92018162631612,134.33871894543012,41.79353780512637,160.00259165414826,22.644507872594943,236.69541883565114C3.319112789854554,314.0945973066697,72.72355303640163,379.243833228382,124.04198916343866,440.3218312028393C172.9286146004772,498.5055451809895,224.45579914871206,558.5317968840102,300,566.797414625762">
</path>
</svg>
<i class="ri-line-chart-line"></i>></i>
</div>
<h4><a href="">Progress Analyzing</a></h4>
<p>
&emsp;&emsp;&emsp;&emsp; Analyze the user progress overtime.&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
<p>
Magnam dolores commodi suscipit. Necessitatibus eius consequatur
ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam
quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea.
Quia fugiat sit in iste officiis commodi quidem hic quas.
</p>
</div>
<!-- End Sevices Section -->
<div class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-1.jpg" class="img-fluid" alt="" />
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Walter White</h4>
<span>Chief Executive Officer</span>
</div>
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Pricing</h2>
<p>
Choose a best product for your requirement and budget.
</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-2.jpg" class="img-fluid" alt="" />
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
<div class="row">
<div class="col-lg-4 col-md-6" data-aos="zoom-im" data-aos-delay="100">
<div class="box">
<h3>Free</h3>
<h4><sup>$</sup>0</h4>
<ul>
<li>Will be expired after 30 days
</li>
<li>No improvement tracking option</li>
<li>Limited practice attempts</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Product Manager</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-3.jpg" class="img-fluid" alt="" />
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
<div class="col-lg-4 col-md-6 mt-4 mt-md-0" data-aos="zoom-in" data-aos-delay="100">
<div class="box featured">
<h3>Paid - Annually</h3>
<h4><sup>$</sup>49</h4>
<ul>
<li>Improvement tracking</li>
<li>Unlimited practice attempts</li>
<li>Annual and lifetime packages</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
<div class="member-info">
<h4>William Anderson</h4>
<span>CTO</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="" />
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
<div class="col-lg-4 col-md-6 mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="100">
<div class="box">
<h3>Paid - Life time</h3>
<h4><sup>$</sup>159</h4>
<ul>
<li>Improvement tracking</li>
<li>Unlimited practice attempts</li>
<li>Annual and lifetime packages</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
</div>
</div>
</div>
</div>
</div>
</section> --> -->
<!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Pricing</h2>
<p>
Choose a best product for your requirement and budget.
</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" data-aos="zoom-im" data-aos-delay="100">
<div class="box">
<h3>Free</h3>
<h4><sup>$</sup>0</h4>
<ul>
<li>Will be expired after 30 days
</li>
<li>No improvement tracking option</li>
<li>Limited practice attempts</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-md-0" data-aos="zoom-in" data-aos-delay="100">
<div class="box featured">
<h3>Paid - Annually</h3>
<h4><sup>$</sup>49</h4>
<ul>
<li>Improvement tracking</li>
<li>Unlimited practice attempts</li>
<li>Annual and lifetime packages</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="100">
<div class="box">
<h3>Paid - Life time</h3>
<h4><sup>$</sup>159</h4>
<ul>
<li>Improvement tracking</li>
<li>Unlimited practice attempts</li>
<li>Annual and lifetime packages</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Pricing Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>
Solution to your question may be here
</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" class="collapse" data-bs-target="#faq-list-1">Can this tool work offline ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>
Unfortunately, This tool <u>can't work offline,</u>you need to have an internrt connection to use "SPEECH MASTER" currently.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" data-bs-target="#faq-list-2" class="collapsed">Does this tool provides overoll improvement chart ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-bs-parent=".faq-list">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>
The "SPEECH MASTER" tool provides individual charts for every major concern of the English and it genarates <u>overoll improvement
chart</u> by considering user's speech accroding to our mechanisms.
Solution to your question may be here
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" data-bs-target="#faq-list-3" class="collapsed">how many practice attemps can have ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>
You can only have limited number of practice attempts with free version, in paid version you'll have <u>unlimited practice attempts.</u>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" data-bs-target="#faq-list-4" class="collapsed">How accurate this tool is ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>
To analyze user's speech "SPEECH MASTER" is using criterias developed by non-native English specialists.
</p>
</div>
</li>
</div>
</ul>
</ul>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" class="collapse" data-bs-target="#faq-list-1">Can this tool work
offline ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>
Unfortunately, This tool <u>can't work offline,</u>you need to have an internrt
connection to use "SPEECH MASTER" currently.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" data-bs-target="#faq-list-2" class="collapsed">Does this tool
provides overoll improvement chart ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-bs-parent=".faq-list">
<p>
The "SPEECH MASTER" tool provides individual charts for every major concern of the
English and it genarates <u>overoll improvement
chart</u> by considering user's speech accroding to our mechanisms.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" data-bs-target="#faq-list-3" class="collapsed">how many practice
attemps can have ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>
You can only have limited number of practice attempts with free version, in paid version
you'll have <u>unlimited practice attempts.</u>
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i>
<a data-bs-toggle="collapse" data-bs-target="#faq-list-4" class="collapsed">How accurate this
tool is ?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>
To analyze user's speech "SPEECH MASTER" is using criterias developed by non-native
English specialists.
</p>
</div>
</li>
</ul>
</ul>
</div>
</div>
</div>
</section>
<!-- End Frequently Asked Questions Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
</div>
<div>
<iframe style="border: 0; width: 100%; height: 270px"
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12097.433213460943!2d-74.0062269!3d40.7101282!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb89d1fe6bc499443!2sDowntown+Conference+Center!5e0!3m2!1smk!2sbg!4v1539943755621"
frameborder="0" allowfullscreen></iframe>
</div>
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>No 2021/A, Forest drive, Malambe</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>Speechmaster@info.com</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+94 11 55488 55</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required />
</div>
<div class="col-md-6 form-group mt-3 mt-md-3">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required />
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
</div>
<div>
<iframe style="border: 0; width: 100%; height: 270px"
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12097.433213460943!2d-74.0062269!3d40.7101282!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb89d1fe6bc499443!2sDowntown+Conference+Center!5e0!3m2!1smk!2sbg!4v1539943755621"
frameborder="0" allowfullscreen></iframe>
</div>
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>No 2021/A, Forest drive, Malambe</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>Speechmaster@info.com</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+94 11 55488 55</p>
</div>
</div>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required />
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">
Your message has been sent. Thank you!
<div class="col-lg-8 mt-5 mt-lg-0">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name"
required/>
</div>
<div class="col-md-6 form-group mt-3 mt-md-3">
<input type="email" class="form-control" name="email" id="email"
placeholder="Your Email" required/>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject"
required/>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message"
required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">
Your message has been sent. Thank you!
</div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
</main>
<!-- End #main -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br />
<br /><br />
<strong>Phone:</strong> +94 11 55488 55<br />
<strong>Email:</strong> Speechmaster@info.com<br />
</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br/>
<br/><br/>
<strong>Phone:</strong> +94 11 55488 55<br/>
<strong>Email:</strong> Speechmaster@info.com<br/>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<form action="" method="post">
<input type="email" name="email" /><input type="submit" value="Subscribe" />
</form>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<form action="" method="post">
<input type="email" name="email"/><input type="submit" value="Subscribe"/>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong>. All Rights Reserved
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
</div>
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>
......@@ -5,59 +5,59 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name=" viewport" content="width=device-width, initial-scale=1.0">
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-auth.js"></script>
<script src="DbConnection.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-auth.js"></script>
<script src="DbConnection.js"></script>
<title>Login</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<meta content="" name="description"/>
<meta content="" name="keywords"/>
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="assets/img/favicon.png" rel="icon"/>
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon"/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link href="assets/vendor/aos/aos.css" rel="stylesheet"/>
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"/>
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet"/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet"/>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet"/>
<link
rel="stylesheet"
type="text/css"
href="http://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css"
<link
rel="stylesheet"
type="text/css"
href="http://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- bootstrap -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="
sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
crossorigin="anonymous"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
......@@ -67,30 +67,30 @@
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Font Awesome -->
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css" />
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css"/>
<!-- Ionicons -->
<link
rel="stylesheet"
href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"
rel="stylesheet"
href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<!-- Theme style -->
<link rel="stylesheet" href="../dist/css/adminlte.min.css" />
<link rel="stylesheet" href="../dist/css/adminlte.min.css"/>
<!-- Google Font: Source Sans Pro -->
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700"
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700"
rel="stylesheet"
/>
<script src="lib/sweetalert2-9.15.2/package/dist/sweetalert2.all.min.js"></script>
......@@ -98,11 +98,11 @@
<!--<script src="https://cdn.jsdelivr.net/npm/promise-polyfill"></script> -->
<script src="lib/sweetalert2-9.15.2/package/dist/sweetalert2.min.js"></script>
<link
rel="stylesheet"
href="lib/sweetalert2-9.15.2/package/dist/sweetalert2.min.css"
rel="stylesheet"
href="lib/sweetalert2-9.15.2/package/dist/sweetalert2.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style>
body {
animation: transitionIn 2s;
......@@ -119,148 +119,147 @@
transform: rotateX(0);
}
}
</style>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">SPEECH MASTER</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="#about">Get Started</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
<ul>
<li><a class="nav-link scrollto" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="#about">Get Started</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<br> <br>
</div>
</header>
<!-- End Header -->
<br> <br>
<h1>Enter Credentials Here:</h1>
<input type="email" placeholder="email here" id="email"><br>
<input type="password" placeholder="password here" id="password"><br>
<h1>Enter Credentials Here:</h1>
<input type="email" placeholder="email here" id="email"><br>
<input type="password" placeholder="password here" id="password"><br>
<!-- <button onclick="signUp()" id="signUp">SignUp</button>-->
<button onclick="signIn()" id="signIp">SignIn</button>
<button onclick="signOut()" id="signOut">SignOut</button>
<button onclick="signIn()" id="signIp">SignIn</button>
<button onclick="signOut()" id="signOut">SignOut</button>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br />
<br /><br />
<strong>Phone:</strong> +94 705694853<br />
<strong>Email:</strong> janithaalas@gmail.com<br />
</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br/>
<br/><br/>
<strong>Phone:</strong> +94 705694853<br/>
<strong>Email:</strong> janithaalas@gmail.com<br/>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<p>
Tamen quem nulla quae legam multos aute sint culpa legam noster
magna
</p>
<form action="" method="post">
<input type="email" name="email" /><input
type="submit"
value="Subscribe"
/>
</form>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<p>
Tamen quem nulla quae legam multos aute sint culpa legam noster
magna
</p>
<form action="" method="post">
<input type="email" name="email"/><input
type="submit"
value="Subscribe"
/>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong
>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
</div>
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</footer>
<!-- End Footer -->
</div>
</footer>
<!-- End Footer -->
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Login</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<meta content="" name="description"/>
<meta content="" name="keywords"/>
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="assets/img/favicon.png" rel="icon"/>
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon"/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link href="assets/vendor/aos/aos.css" rel="stylesheet"/>
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"/>
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet"/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet"/>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet"/>
<!-- =======================================================
* Template Name: OnePage - v4.3.0
......@@ -46,19 +46,19 @@
* License: https://bootstrapmade.com/license/
======================================================== -->
<link
rel="stylesheet"
type="text/css"
href="http://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css"
rel="stylesheet"
type="text/css"
href="http://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- bootstrap -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="
sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
crossorigin="anonymous"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
......@@ -68,30 +68,30 @@
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Font Awesome -->
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css" />
<link rel="stylesheet" href="../plugins/fontawesome-free/css/all.min.css"/>
<!-- Ionicons -->
<link
rel="stylesheet"
href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"
rel="stylesheet"
href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<!-- Theme style -->
<link rel="stylesheet" href="../dist/css/adminlte.min.css" />
<link rel="stylesheet" href="../dist/css/adminlte.min.css"/>
<!-- Google Font: Source Sans Pro -->
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700"
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700"
rel="stylesheet"
/>
<script src="lib/sweetalert2-9.15.2/package/dist/sweetalert2.all.min.js"></script>
......@@ -99,11 +99,11 @@
<!--<script src="https://cdn.jsdelivr.net/npm/promise-polyfill"></script> -->
<script src="lib/sweetalert2-9.15.2/package/dist/sweetalert2.min.js"></script>
<link
rel="stylesheet"
href="lib/sweetalert2-9.15.2/package/dist/sweetalert2.min.css"
rel="stylesheet"
href="lib/sweetalert2-9.15.2/package/dist/sweetalert2.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style>
body {
animation: transitionIn 2s;
......@@ -120,247 +120,248 @@
transform: rotateX(0);
}
}
</style>
</head>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">SPEECH MASTER</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="#about">Get Started</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
<ul>
<li><a class="nav-link scrollto" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#pricing">Pricing</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li>
<a class="getstarted scrollto" href="#about">Get Started</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
</div>
</header>
<!-- End Header -->
<div id="hero" class="container">
<div class="row">
<div id="hero" class="container">
<div class="row">
<div class="col-lg"></div>
<div class="col-lg-6">
<!-- Default form login -->
<br /><br /><br /><br /><br /><br />
<form class="text-center border border-light" action="#!">
<h1 class="h4 mb-4">Sign in</h1>
<!-- Email -->
<input
type="email"
id="defaultLoginFormEmail"
class="form-control mb-4"
placeholder="E-mail"
/>
<!-- Password -->
<input
type="password"
id="defaultLoginFormPassword"
class="form-control mb-4"
placeholder="Password"
/>
<div class="d-flex justify-content-around">
<div>
<!-- Remember me -->
<div class="custom-control custom-checkbox">
<input
type="checkbox"
class="custom-control-input"
id="defaultLoginFormRemember"
/>
<label
class="custom-control-label"
for="defaultLoginFormRemember"
>Remember me</label
>
<!-- Default form login -->
<br/><br/><br/><br/><br/><br/>
<form class="text-center border border-light" action="#!">
<h1 class="h4 mb-4">Sign in</h1>
<!-- Email -->
<input
type="email"
id="defaultLoginFormEmail"
class="form-control mb-4"
placeholder="E-mail"
/>
<!-- Password -->
<input
type="password"
id="defaultLoginFormPassword"
class="form-control mb-4"
placeholder="Password"
/>
<div class="d-flex justify-content-around">
<div>
<!-- Remember me -->
<div class="custom-control custom-checkbox">
<input
type="checkbox"
class="custom-control-input"
id="defaultLoginFormRemember"
/>
<label
class="custom-control-label"
for="defaultLoginFormRemember"
>Remember me</label
>
</div>
</div>
<div>
<!-- Forgot password -->
<a href="">Forgot password?</a>
</div>
</div>
</div>
<div>
<!-- Forgot password -->
<a href="">Forgot password?</a>
</div>
</div>
<!-- Sign in button -->
<!-- <a href="fileUploaderFinal.html" > <button class="btn btn-info btn-block my-4" type="submit">
Sign in
</button></a> -->
<a
href="fileUploaderFinal.html"
class="btn btn-info btn-block my-4"
role="button"
aria-disabled="true"
>
Sign in</a
>
<!-- Register -->
<p>
Not a member?
<a href="register.html">Register</a>
</p>
<!-- Social login -->
<p>or sign in with:</p>
<a href="#" class="mx-2" role="button"
><i class="fab fa-facebook-f light-blue-text"></i
></a>
<a href="#" class="mx-2" role="button"
><i class="fab fa-twitter light-blue-text"></i
></a>
<a href="#" class="mx-2" role="button"
><i class="fab fa-linkedin-in light-blue-text"></i
></a>
<a href="#" class="mx-2" role="button"
><i class="fab fa-github light-blue-text"></i
></a>
</form>
<!-- Default form login -->
<!-- Sign in button -->
<!-- <a href="fileUploaderFinal.html" > <button class="btn btn-info btn-block my-4" type="submit">
Sign in
</button></a> -->
<a
href="fileUploaderFinal.html"
class="btn btn-info btn-block my-4"
role="button"
aria-disabled="true"
>
Sign in</a
>
<!-- Register -->
<p>
Not a member?
<a href="register.html">Register</a>
</p>
<!-- Social login -->
<p>or sign in with:</p>
<a href="#" class="mx-2" role="button"
><i class="fab fa-facebook-f light-blue-text"></i
></a>
<a href="#" class="mx-2" role="button"
><i class="fab fa-twitter light-blue-text"></i
></a>
<a href="#" class="mx-2" role="button"
><i class="fab fa-linkedin-in light-blue-text"></i
></a>
<a href="#" class="mx-2" role="button"
><i class="fab fa-github light-blue-text"></i
></a>
</form>
<!-- Default form login -->
</div>
<div class="col-lg"></div>
</div>
</div>
<br /><br /><br /><br /><br />
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
</div>
<br/><br/><br/><br/><br/>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br />
<br /><br />
<strong>Phone:</strong> +94 705694853<br />
<strong>Email:</strong> janithaalas@gmail.com<br />
</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>SPEECH MASTER</h3>
<p>
SLIIT Mabalbe<br/>
<br/><br/>
<strong>Phone:</strong> +94 705694853<br/>
<strong>Email:</strong> janithaalas@gmail.com<br/>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Services</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Privacy policy</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Content Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Facial Expressions Analyzing</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Grammer Checking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Filler Words Tracking</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Customized Report</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<p>
Tamen quem nulla quae legam multos aute sint culpa legam noster
magna
</p>
<form action="" method="post">
<input type="email" name="email" /><input
type="submit"
value="Subscribe"
/>
</form>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<p>
Tamen quem nulla quae legam multos aute sint culpa legam noster
magna
</p>
<form action="" method="post">
<input type="email" name="email"/><input
type="submit"
value="Subscribe"
/>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong
<div class="copyright">
&copy; Copyright <strong><span>SPEECH MASTER</span></strong
>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
</div>
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/ -->
Designed by <a href="https://www.sliit.lk/">SLIIT 2017 Batch</a>
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a
href="#"
class="back-to-top d-flex align-items-center justify-content-center"
><i class="bi bi-arrow-up-short"></i
></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a
href="#"
class="back-to-top d-flex align-items-center justify-content-center"
><i class="bi bi-arrow-up-short"></i
></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>
'I would like to conclude': 'summary',
'According to an analysis': 'summary',
'conclude by saying': 'summary',
'final note': 'summary',
'I close by saying': 'summary',
'i should like to conclude by saying': 'summary',
'I should like to finish by saying': 'summary',
'I shall conclude by saying': 'summary',
'I want to conclude by saying': 'summary',
'I will close by saying': 'summary',
'i will conclude': 'summary',
'i will conclude by saying': 'summary',
'i will end by saying': 'summary',
'i will finish by saying': 'summary',
'i would end by saying': 'summary',
'i would like to conclude by stating': 'summary',
'i would like to end by saying': 'summary',
'in closing': 'summary',
'in conclusion': 'summary',
'let me close by saying': 'summary',
'let me conclude by saying': 'summary',
'let me finish by saying': 'summary',
'may i conclude by saying': 'summary',
'i would like briefly': 'summary',
'i would like to refer briefly': 'summary',
'i would like to return briefly': 'summary',
'let me briefly present': 'summary',
'let me briefly say': 'summary',
'let me briefly touch': 'summary',
'let me comment briefly': 'summary',
'let me quickly': 'summary',
'let me turn briefly': 'summary',
'allow me to say a few': 'summary',
'allow me to touch briefly': 'summary',
'i shall refer briefly': 'summary',
'i should like to refer briefly': 'summary',
'i want to say a couple': 'summary',
'i want to say a few': 'summary',
'i will briefly mention': 'summary',
'i will briefly summarize': 'summary',
'i will comment briefly': 'summary',
'i will refer briefly': 'summary',
'i will touch briefly': 'summary',
'i wish to say a few': 'summary',
'i would like to say a few': 'summary',
'i would like to say a word': 'summary',
'i would like to speak briefly': 'summary',
'let me briefly turn': 'summary',
'let me say a few': 'summary',
'let me touch briefly': 'summary',
'Let me briefly': 'summary',
'tell you a little story': 'story',
'told a story': 'story',
'let me tell you a story': 'story',
'thanks': 'thanking',
'ta muchly': 'thanking',
'thanks a bunch': 'thanking',
'thank you very much': 'thanking',
'many thanks': 'thanking',
'i thank you': 'thanking',
'thanks a million': 'thanking',
'it is hard to find words to express my gratitude': 'thanking',
'merci': 'thanking',
'with gratitude': 'thanking',
'i thank you from the bottom of my heart': 'thanking',
'accept my endless gratitude': 'thanking',
'thank you so much': 'thanking',
'i am all gratitude': 'thanking',
'i am grateful': 'thanking',
'i will never forget what you have done': 'thanking',
'thank you kindly': 'thanking',
'cheers': 'thanking',
'i appreciate that': 'thanking',
'respectfully yours with sincere gratitude': 'thanking',
'accord a thank': 'thanking',
'gracias': 'thanking',
'i thank you most warmly': 'thanking',
'i wish to thank everyone who pitched in': 'thanking',
'give thanks': 'thanking',
'much thanks': 'thanking',
'show appreciation': 'thanking',
'thanks very much': 'thanking',
'with kindest personal regards': 'thanking',
'appreciate it': 'thanking',
'thank you for helping me': 'thanking',
'you are a lifesaver': 'thanking',
'you have my gratitude': 'thanking',
'your generosity overwhelms me': 'thanking',
'i humbly thank you': 'thanking',
'it was so awesome of you': 'thanking',
'thanks so much': 'thanking',
'by all means': 'thanking',
'i wanted to thank you as soon as possible': 'thanking',
'i wanted to thank you as soon as possible': 'thanking',
'nice one': 'thanking',
'of course': 'thanking',
'what would i do without you': 'thanking',
'i will forever be beholden to you': 'thanking',
'i will forever be beholden to you': 'thanking',
'much appreciated': 'thanking',
'my gratitude to you for all you have done': 'thanking',
'thank you for never letting me down': 'thanking',
'thanks for everything': 'thanking',
'please accept my best thanks': 'thanking',
'bless you': 'thanking',
'delighted': 'thanking',
'how can i show you how grateful i am': 'thanking',
'i appreciate your time': 'thanking',
'thanks for taking the time to think of me': 'thanking',
'accept my deepest thanks': 'thanking',
'certainly': 'thanking',
'charmed': 'thanking',
'consider yourself heartily thanked': 'thanking',
'excellent': 'thanking',
'how can i ever possibly thank you': 'thanking',
'i cannot express my appreciation': 'thanking',
'splendid': 'thanking',
'thanks a ton': 'thanking',
'you are the best': 'thanking',
'all i can say is thanks': 'thanking',
'all my love and thanks to you': 'thanking',
'appreciate your feedback': 'thanking',
'appreciate your help': 'thanking',
'appreciate your input': 'thanking',
'blessings': 'thanking',
'expressing thanks': 'thanking',
'how can i repay you': 'thanking',
'i cannot thank you enough': 'thanking',
'i owe you one': 'thanking',
'i really appreciate it': 'thanking',
'i really appreciate that': 'thanking',
'i'm really grateful': 'thanking',
'if anyone deserves thanks it is you': 'thanking',
'sincerely': 'thanking',
'thank you for your thoughtfulness': 'thanking',
'thanks for your consideration': 'thanking',
'thanks heaps': 'thanking',
'that's so kind of you': 'thanking',
'warmest greetings to all': 'thanking',
'warmly': 'thanking',
'with appreciation': 'thanking',
'with sincere appreciation': 'thanking',
'with sincere thanks': 'thanking',
'don't know what to say': 'thanking',
'words are powerless to express my gratitude': 'thanking',
'words cannot describe how thankful i am': 'thanking',
'can't describe how thankful i am': 'thanking',
'don't know what to say': 'thanking',
'how thoughtful of you': 'thanking',
'i can't thank you enough': 'thanking',
'i owe you big time': 'thanking',
'i really appreciate': 'thanking',
'i really appreciate your help': 'thanking',
'i would like to thank you': 'thanking',
'i'll forever be grateful': 'thanking',
'i'm grateful for your assistance': 'thanking',
'i'm really grateful for your help': 'thanking',
'i'm really grateful for your help': 'thanking',
'i'm so grateful': 'thanking',
'if anyone deserve thanks it's you': 'thanking',
'it would be greatly appreciated': 'thanking',
'it's very kind of you': 'thanking',
'mercy bucket': 'thanking',
'mercy buckets': 'thanking',
'million thanks to you': 'thanking',
'my gratitude knows no bounds': 'thanking',
'oh you shouldn't have': 'thanking',
'please accept my deepest thanks': 'thanking',
'thank you for everything': 'thanking',
'thank you for your assistance': 'thanking',
'thanks a heap': 'thanking',
'thanks for that': 'thanking',
'you made my day': 'thanking',
'you saved my day': 'thanking',
'you're a dear': 'thanking',
'you're a life saver': 'thanking',
'you're awesome': 'thanking',
'you're great': 'thanking',
'you've saved my life': 'thanking',
'by dint': 'thanking',
'i thank you in advance': 'thanking',
'i want to thank': 'thanking',
'i wanted to thank': 'thanking',
'i would like to thank': 'thanking',
'letter of thanks': 'thanking',
'say thank': 'thanking',
'thanks ever so much': 'thanking',
'thanks just the same': 'thanking',
'very grateful': 'thanking',
'word of thanks': 'thanking',
\ No newline at end of file
'i am honored': 'summary',
'it is an honour': 'summary',
'feel honoured': 'summary',
'great honor': 'summary',
'great honour': 'summary',
'honor me': 'summary',
'honors me': 'summary',
'i am deeply honoured': 'summary',
'i am flattered': 'summary',
'i am humbled': 'summary',
'i am pleased': 'summary',
'i am privileged': 'summary',
'i am very honoured': 'summary',
'i have had the honour': 'summary',
'i have had the privilege': 'summary',
'i now have the honour': 'summary',
'it has been an honor': 'summary',
'it is a great honor': 'summary',
'it is a privilege': 'summary',
'it is indeed an honour': 'summary',
'it was an honour': 'summary',
'it would be an honor': 'summary',
'so honored': 'summary',
'such an honor': 'summary',
'we are honoured': 'summary',
'what a pleasure': 'summary',
'what an honor': 'summary',
'what honor': 'summary',
'what honour': 'summary',
'you honor': 'summary',
'you honor me': 'summary',
'you honour me': 'summary',
'once upon a time': 'summary',
'long ago': 'summary',
'once': 'summary',
'formerly': 'summary',
'in the past': 'summary',
'at one time': 'summary',
'long time ago': 'summary',
'away back': 'summary',
'in former times': 'summary',
'in times gone by': 'summary',
'many years ago': 'summary',
'very long time ago': 'summary',
'in times past': 'summary',
'back in the day': 'summary',
'in the olden days': 'summary',
'some time ago': 'summary',
'many moons ago': 'summary',
'ages ago': 'summary',
'in days gone by': 'summary',
'in earlier times': 'summary',
'in olden times': 'summary',
'good while ago': 'summary',
'in days of old': 'summary',
'in days of yore': 'summary',
'one time previously': 'summary',
'at an earlier time': 'summary',
'back in the old days': 'summary',
'in bygone days': 'summary',
'way back in the past': 'summary',
'down memory lane': 'summary',
'in the good old days': 'summary',
'in years gone by': 'summary',
'long time before': 'summary',
'long while ago': 'summary',
'much further back': 'summary',
'one of these days': 'summary',
'there once was': 'summary',
'there was a time': 'summary',
'there was a time when': 'summary',
'there was once': 'summary',
'time was when': 'summary',
'well before': 'summary',
'ahead of time': 'summary',
'all those years ago': 'summary',
'as long ago': 'summary',
'at the past': 'summary',
'awhile ago': 'summary',
'awhile back': 'summary',
'been a very long time': 'summary',
'donkey's years ago': 'summary',
'during the past few': 'summary',
'during the previous': 'summary',
'earlier on': 'summary',
'far earlier': 'summary',
'far sooner': 'summary',
'have for a long time been': 'summary',
'in an era': 'summary',
'in ancient times': 'summary',
'in days past': 'summary',
......@@ -2,23 +2,22 @@ import spacy
from scipy.io.wavfile import read
scoreForClearness = 50/100
#Identify ocer complex words
nlp = spacy.load("en_core_web_sm")
def clearnerssWords(text):
doc = nlp(text)
returnVal = ""
for token in doc:
count = len(token)
if count > 12:
# print(f"{token.text} - {count} letters: This is a too complicated word. It is better to use more simpler word.")
returnVal += f"{token.text} - {count} letters: This is a too complicated word. It is better to use more simpler word."
return {
"message": returnVal,
"score": scoreForClearness
}
#Identify over complex sentences
def clearnerssSentence(text):
doc = nlp(text)
returnVal = ""
......@@ -37,10 +36,7 @@ def clearnerssSentence(text):
"score": scoreForClearness
}
print(clearnerssWords("Apple is looking at buying U.K. startup for $1 billion accumulativeness. This ia a dog. name is Chalika Mihiran"))
print(clearnerssSentence("Apple is looking at buying U.K. startup for $1 billion accumulativeness. This ia a dog. name is Chalika Mihiran"))
#Calculate the rate of the speed
def clearnessReadAudioFile(filePath):
# Read the Audiofile
samplerate, data = read(filePath)
......
......@@ -5,19 +5,11 @@ scoreForConclusion = 60/100
nlp = spacy.load("en_core_web_sm")
speech = """According to a research Global warming is an international phenomenon where the earth’s mean surface temperature is increasing rapidly due to the accumulation of greenhouse gases in the atmosphere. The source of these greenhouse gases is various, both natural and manmade, such as forest fires, industrialisation, burning of agricultural crops, burning of fossil fuels etc. Global warming has proved to be a huge force created by man that can have the potential to destroy the natural cycle of our planet.
Global warming is not a recent phenomenon but it has surely improved and increased because of rapid industrialisation, population explosion, agricultural explosion and the ever-increasing greed for economic growth for countries at the cos of of exploiting our environment. Global warming did exist hundreds of years before when civilizations begin to occur. There are examples of burning fossil fuels and causing pollution even during early civilizations like the Indus valley civilisation or Harappan civilization, but the magnitude of global warming today is thousand times more than what it was a few centuries back.
Some of the main greenhouse gases that are causing global warming are carbon dioxide, methane, nitrous oxide, sulphur hexafluoride, hydrofluorocarbons and perfluorocarbons. Most of the greenhouse gases are produced due to the consumption of fossil fuels.
The effects of global warming are plenty and one of the most catastrophic effects of global warming is the deterioration of the ozone layer. Due to the accumulation of chlorofluorocarbons in the stratosphere, scientists have predicted that an area above the continent of Antarctica has a huge ozone hole. The ozone layer is a layer in the atmosphere which protects the Earth’s surface from the harmful ultraviolet radiations coming from the sun. When this ozone layer gets depleted, the living beings on the planet earth is easily exposed to UV rays. This can cause catastrophic effects on human health, agricultural cycle, climatic cycle and on the very existence of our planet.
Let me mention a few of the impacts of global warming that we are already seeing in the year 2020. It is due to global warming that there is a rise in sea levels which is causing flooding off patches of lands, the low lying setters and islands countries of Indonesia and Japan. Global warming is causing changes in the rainfall patterns. When the change in rainfall patterns and climatic changes occurs abruptly, it becomes difficult for the Meteorological Departments to predict natural calamities and this increases the damage caused to life and property.
Draughts, forest fires floods and earthquakes are some of the indications for changing in climatic patterns caused due to global warming. Melting of glaciers and polar ice caps has caused almost extinction of habitat near the north pole and the south pole. The polar bears, which are considered to be greatly endangered species, are decreasing in their population by the day because of the melting of glaciers. Melting of glaciers can also lead to an increase in floods and famine in the nearby regions.
Certain diseases like Malaria are caused due to global warming since there is the migration of species from one place to another. Many scientists also predict that the COVID-19 pandemic that we are witnessing in the year 2020 can also be traced back to the impact of global warming when seen from the bird’s point of you
I would like to conclude my global warming speech by saying that the international community, where does they governments and citizens has to come forward to reduce your carbon footprint to save the planet for our future generation. All of us living here are the stakeholders of nature and we are responsible for how we take care of our environment. As the saying goes, charity begins at home, we have to start using biodegradable materials at our houses, reduce plastic waste and other such changes in our lifestyle so that we can make an impact to reduce global warming globally."""
#Count the total number of characters in the speech
def conclisions(speech):
totalCharacterCount = len(speech)
#Extract the conclusion of the speech
conclusionCharacterCount = (85/100)*totalCharacterCount
conclusion = (speech[int(conclusionCharacterCount):int(totalCharacterCount)])
# print(">>>Conclusion<<<")
......@@ -27,46 +19,29 @@ def conclisions(speech):
"score": scoreForConclusion
}
#....Analyze the introduction.....
#identify best uses for introduction
def comments(speech):
conclusion = conclisions(speech)["message"]
final_words = []
endingPhrases = ["I would like to conclude", "conclude by saying", "final note", "I close by saying",
"According to an analysis", "I shall conclude by saying", "i should like to conclude by saying",
"I should like to finish by saying", "I want to conclude by saying", "I will close by saying",
"i will conclude", "i will conclude by saying", "i will end by saying", "i will finish by saying",
"i would end by saying", "i would like to conclude", "i would end by saying",
"i would like to conclude by stating", "i would like to end by saying", "in closing",
"in conclusion", "let me close by saying", "let me conclude by saying", "let me finish by saying",
"may i conclude by saying"
, "i would like briefly", "i would like to briefly", "i would like to refer briefly",
"i would like to return briefly", "let me briefly present", "let me briefly say",
"let me briefly touch", "let me comment briefly", "let me quickly", "let me turn briefly",
"allow me to say a few", "allow me to touch briefly", "i shall refer briefly",
"i should like to refer briefly", "i should like to refer briefly", "i want to say a couple",
"i want to say a few", "i will briefly mention", "i will briefly summarize",
"i will comment briefly", "i will refer briefly", "i will touch briefly", "i wish to say a few",
"i would like to say a few", "i would like to say a word", "i would like to speak briefly",
"let me briefly turn", "let me say a few", "let me touch briefly", "Let me briefly"]
for wordPharse in endingPhrases:
if wordPharse in conclusion:
final_words.append(wordPharse)
# print(">>>Comments<<<")
# print("You used some ending phrases in your conclusion. It is a good practice to use ending phrases in your introduction")
# print(final_words)
with open('content analyzing/bestPracticesForConclusion.txt', 'r') as file:
for line in file:
clear_line = line.replace("\n", '').replace(",", '').replace("'", '').strip()
word, emotion = clear_line.split(':')
if word in conclusion:
final_words.append(word)
return {
"message": final_words,
"score": scoreForConclusion
}
#Identify questions that user used in introduction
def questions(speech):
retVal = []
doc = nlp(conclisions(speech)["message"])
#Declare the patterns of questions
patterns = [[{"POS": "ADV"}, {"POS": "AUX"}, {"POS": "PRON"}], [{"POS": "ADV"}, {"POS": "AUX"}, {"POS": "NOUN"}]]
verb_phrases = textacy.extract.token_matches(doc, patterns)
......
......@@ -2,25 +2,12 @@ import spacy
import textacy
scoreForIntroduction = 40/100
#Identify words that are in a introduction
nlp = spacy.load("en_core_web_sm")
speech = """According to a research Global warming is an where does he international phenomenon where the earth’s mean surface temperature is increasing rapidly due to the accumulation of greenhouse gases in the atmosphere. where does they The source of these greenhouse gases is various, both natural and manmade, such as forest fires, industrialisation, burning of agricultural crops, burning of fossil fuels etc. Global warming has proved to be a huge force created by man that can have the potential to destroy the natural cycle of our planet.
Global warming is not a recent phenomenon but it has surely improved and increased because of rapid industrialisation, population explosion, agricultural explosion and the ever-increasing greed for economic growth for countries at the cos of of exploiting our environment. Global warming did exist hundreds of years before when civilizations begin to occur. There are examples of burning fossil fuels and causing pollution even during early civilizations like the Indus valley civilisation or Harappan civilization, but the magnitude of global warming today is thousand times more than what it was a few centuries back.
Some of the main greenhouse gases that are causing global warming are carbon dioxide, methane, nitrous oxide, sulphur hexafluoride, hydrofluorocarbons and perfluorocarbons. Most of the greenhouse gases are produced due to the consumption of fossil fuels.
The effects of global warming are plenty and one of the most catastrophic effects of global warming is the deterioration of the ozone layer. Due to the accumulation of chlorofluorocarbons in the stratosphere, scientists have predicted that an area above the continent of Antarctica has a huge ozone hole. The ozone layer is a layer in the atmosphere which protects the Earth’s surface from the harmful ultraviolet radiations coming from the sun. When this ozone layer gets depleted, the living beings on the planet earth is easily exposed to UV rays. This can cause catastrophic effects on human health, agricultural cycle, climatic cycle and on the very existence of our planet.
Let me mention a few of the impacts of global warming that we are already seeing in the year 2020. It is due to global warming that there is a rise in sea levels which is causing flooding off patches of lands, the low lying setters and islands countries of Indonesia and Japan. Global warming is causing changes in the rainfall patterns. When the change in rainfall patterns and climatic changes occurs abruptly, it becomes difficult for the Meteorological Departments to predict natural calamities and this increases the damage caused to life and property.
Draughts, forest fires floods and earthquakes are some of the indications for changing in climatic patterns caused due to global warming. Melting of glaciers and polar ice caps has caused almost extinction of habitat near the north pole and the south pole. The polar bears, which are considered to be greatly endangered species, are decreasing in their population by the day because of the melting of glaciers. Melting of glaciers can also lead to an increase in floods and famine in the nearby regions.
Certain diseases like Malaria are caused due to global warming since there is the migration of species from one place to another. Many scientists also predict that the COVID-19 pandemic that we are witnessing in the year 2020 can also be traced back to the impact of global warming when seen from the bird’s point of you
I would like to conclude my global warming speech by saying that the international community, governments and citizens has to come forward to reduce your carbon footprint to save the planet for our future generation. where does they All of us living here are the stakeholders of nature and we are responsible for how we take care of our environment. As the saying goes, charity begins at home, we have to start using biodegradable materials at our houses, reduce plastic waste and other such changes in our lifestyle so that we can make an impact to reduce global warming globally."""
#Count the total number of characters in the speech
def introductionFunc(speech):
totalCharacterCount = len(speech)
#Extract the introduction of the speech
introductionCharacterCount = (15 / 100) * totalCharacterCount
introduction = (speech[0:int(introductionCharacterCount)])
# print(">>>Introduction<<<")
......@@ -30,26 +17,25 @@ def introductionFunc(speech):
"score": scoreForIntroduction
}
#....Analyze the introduction.....
#identify best uses for introduction
def introductionBestUsesFunc(speech):
introduction = nlp(introductionFunc(speech)["message"])
final_words = []
referStudies = ["According to a study", "According to a research","According to a review","According to a survey","According to an analysis","according to one study","According to research","According to an investigation","According to research conducted","According to the study"
,"according to the survey","according to this study","after an investigation","for a study","in a studio","in a survey","in one study","results of a study","study finds","study says","survey conducted","survey found"]
for wordPharse in referStudies:
if wordPharse in introductionFunc(speech):
final_words.append(wordPharse)
print(">>>Comments<<<")
print(f"You refer some other's works in your introduction. It is a good practice to refer some one's work in your introduction")
print(final_words)
with open('content analyzing/bestPracticesForIntroduction.txt', 'r') as file:
for line in file:
clear_line = line.replace("\n", '').replace(",", '').replace("'", '').strip()
word, emotion = clear_line.split(':')
if word in introduction:
final_words.append(word)
return {
"message": final_words,
"score": scoreForIntroduction
}
#Identify questions that user used in introduction
def introductionQuestions(speech):
doc = nlp(introductionFunc(speech)["message"])
......
......@@ -11,8 +11,6 @@ def keywordExrtraction(topic, speech):
punctuation = string.punctuation + '\n'
# This is a loop for count words apart from stop words and frequencies.
word_frequencies = {}
for word in Content:
if word.text.lower() not in stopwords:
......@@ -22,8 +20,6 @@ def keywordExrtraction(topic, speech):
else:
word_frequencies[word.text] += 1
# print(word_frequencies)
topicWords = []
for words in Topic:
......@@ -44,4 +40,3 @@ def keywordExrtraction(topic, speech):
"score": 50/100
}
# keywordExrtraction("dog", "The dog is a pet animal. A dog has sharp teeth so that it can eat flesh very easily, it has four legs, two ears, two eyes, a tail, a mouth, and a nose. It is a very clever animal and is very useful in catching thieves. It runs very fast, barks loudly and attacks the strangers. A dog saves the life of the master from danger. One can find dogs everywhere in the world. Dogs are a very faithful animal. It has a sharp mind and a strong sense of hearing smelling the things. It also has many qualities like swimming in the water, jumping from anywhere, good smelling sense.")
......@@ -7,6 +7,7 @@ nlp = spacy.load("en_core_web_sm")
stopwords = list(STOP_WORDS)
punctuation = punctuation + '\n'
def synonymsFunc(topic, speech):
Topic = nlp(topic)
Content = nlp(speech)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment