ifms-cert-download/index.html
2024-03-07 09:57:37 -04:00

60 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Download de certificado para WiFi</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
code {
background-color: #eee;
padding: 0.5em;
border-radius: 0.2em;
margin: 1em;
}
p {
margin: 1.5em;
}
.btn {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 32px;
text-decoration: none;
display: inline-block;
font-size: 16px;
transition-duration: 200ms;
border-radius: 5px;
margin: 2em;
}
.btn:hover {
background-color: #3e8e41;
}
.title {
font-size: 2em;
font-weight: 400;
}
</style>
</head>
<body>
<div style="text-align: center">
<h1 class="title">Download de certificado para WiFi</h1>
<p>
Clique no link abaixo para fazer download do certificado para conexão
com o WiFi:
</p>
<a class="btn" href="ca-cert.crt" download>
Clique aqui para baixar o certificado
</a>
<p>Domínio: <code> acadsrv.pp.ifms.edu.br </code></p>
</div>
</body>
</html>