21 lines
476 B
HTML
21 lines
476 B
HTML
<html>
|
|
<head>
|
|
<title>Absencia de Presencia</title>
|
|
<script src="/static/index.js"></script>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<textarea id="frase"></textarea>
|
|
|
|
<div id="buttons">
|
|
<button id="absencia">Absencia</button>
|
|
<button id="presencia">Presencia</button>
|
|
<button id="submit">Calcula</button>
|
|
</div>
|
|
</div>
|
|
|
|
<p id="response"></p>
|
|
</body>
|
|
</html>
|