|
|
<!DOCTYPE html> |
|
|
<html> |
|
|
<head> |
|
|
<meta charset="utf-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
|
|
<meta name="description" content=""> |
|
|
<meta name="author" content=""> |
|
|
|
|
|
|
|
|
|
|
|
<title>PLATAFORMA VOZ</title> |
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='bootstrap.css')}}" /> |
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='font-awesome.min.css')}}" /> |
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css')}}" /> |
|
|
|
|
|
|
|
|
<link href='http://fonts.googleapis.com/css?family=Ruluko' rel='stylesheet' type='text/css' /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
|
|
|
|
|
|
|
|
<style type="text/css"> |
|
|
#footer { |
|
|
background-color:#373737; |
|
|
color:#fff; |
|
|
text-align:right; |
|
|
bottom: 0px; |
|
|
position:fixed; |
|
|
width: 100%; |
|
|
left: 0px; |
|
|
} |
|
|
#div-cookies { |
|
|
position: fixed; |
|
|
bottom: 0px; |
|
|
left: 0px; |
|
|
width: 100%; |
|
|
background-color: white; |
|
|
box-shadow: 0px -5px 15px gray; |
|
|
padding: 7px; |
|
|
text-align: center; |
|
|
z-index: 99; |
|
|
} |
|
|
</style> |
|
|
|
|
|
</head> |
|
|
<body> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation" style="background-color: #373737;"> |
|
|
<div class="container" > |
|
|
<div class="navbar-header"> |
|
|
|
|
|
<img src="Logo TMS.png" style="max-height: 60px;max-width: 150px"> |
|
|
</div> |
|
|
|
|
|
<div class="collapse navbar-collapse navbar-ex1-collapse"> |
|
|
<ul class="nav navbar-nav navbar-right" style="background-color: #373737;"> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
</nav> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="jquery-1.10.2.js"></script> |
|
|
|
|
|
<script src="bootstrap.js"></script> |
|
|
|
|
|
<script src="custom.js"></script> |
|
|
<div id="div-cookies" style="display: none;"> |
|
|
Necesitamos usar cookies para que funcione todo, si permanece aquí acepta su uso, más información en |
|
|
<a hreflang="es" href="/aviso-legal.html">Aviso Legal</a> |
|
|
y la |
|
|
<a hreflang="es" href="/politica-de-privacidad.html">Política de Privacidad</a>. |
|
|
<button type="button" class="btn btn-sm btn-primary" onclick="acceptCookies()"> |
|
|
Acepto el uso de cookies |
|
|
</button> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<center><iframe src="https://jpltedcas-tedcasspeechrecognition.hf.space" name="iframe" width="100%" height="500" allow="microphone;" align="middle"></iframe></center> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
function checkAcceptCookies() { |
|
|
if (localStorage.acceptCookies == 'true') { |
|
|
} else { |
|
|
$('#div-cookies').show(); |
|
|
} |
|
|
} |
|
|
function acceptCookies() { |
|
|
localStorage.acceptCookies = 'true'; |
|
|
$('#div-cookies').hide(); |
|
|
} |
|
|
$(document).ready(function() { |
|
|
checkAcceptCookies(); |
|
|
}); |
|
|
</script> |
|
|
<div class="for-full-back" id="footer"> |
|
|
2023 www.tedcas.com | All Right Reserved |
|
|
</div> |
|
|
</body> |
|
|
|
|
|
</html> |
|
|
|