|
<!doctype html> |
|
<html lang="en"> |
|
<head> |
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> |
|
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script> |
|
<script src="{{ url_for('static', filename='js/myscript.js') }}"></script> |
|
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> |
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}"> |
|
|
|
<title>Πρόβλεψη Μοντέλου</title> |
|
</head> |
|
|
|
<style> |
|
#brandname { |
|
float: left; |
|
margin-right: 10px; |
|
color: firebrick; |
|
} |
|
h1 { |
|
float: right; |
|
} |
|
.true-false-bar { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
.progress-bar-holder { |
|
margin-bottom: 10px; |
|
} |
|
.progress-bar { |
|
background: #AED6F1; |
|
} |
|
.article-text { |
|
margin-top: 10px; |
|
margin-bottom: 0; |
|
color: black; |
|
} |
|
.button { |
|
border: none; |
|
color: white; |
|
padding: 15px 32px; |
|
text-align: center; |
|
text-decoration: none; |
|
display: inline-block; |
|
font-size: 14px; |
|
cursor: pointer; |
|
} |
|
|
|
.button1 {background-color: black;} |
|
body { |
|
margin-right: 10px; |
|
} |
|
.container { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: left; |
|
justify-content: center; |
|
min-height: 50vh; |
|
} |
|
</style> |
|
|
|
|
|
<body> |
|
<div class="container"> |
|
<h3 class="mb-4"><b>Αποτελέσματα ανάλυσης</b></h3> |
|
<div class="row mb-4"> |
|
<div class="col-md-6"> |
|
<h5>Το προς εξέταση άρθρο:</h5> |
|
</div> |
|
</div> |
|
|
|
<div class="row mb-4"> |
|
<div class="col-md-6"> |
|
<p><b style="color: black;">"{{mess}}"</b></p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="row mb-3"> |
|
<div class="col-md-6"> |
|
<h5 style="font-size:20px;">{{classes[0]}}</h5> |
|
</div> |
|
</div> |
|
<div class="row mb-3"> |
|
<div class="col-md-6"> |
|
<div class='progress-bar-holder'> |
|
<div style="background: green;" class='progress-bar'> |
|
{{props[0]}}% |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="row mb-3"> |
|
<div class="col-md-6"> |
|
<h5 style="font-size:20px;">{{classes[1]}}</h5> |
|
</div> |
|
</div> |
|
<div class="row mb-3"> |
|
<div class="col-md-6"> |
|
<div class='progress-bar-holder'> |
|
<div style="background: red;" class='progress-bar'> |
|
{{props[1]}}% |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="col-md-6"> |
|
<a href="{{ url_for('home') }}"><button class="button button1">Επιστροφή για εισαγωγή νέου άρθρου</button></a> |
|
</div> |
|
</div> |
|
</body> |
|
|