ifms-cert-download/index.html

60 lines
1.4 KiB
HTML
Raw Normal View History

2023-11-17 13:29:34 +00:00
<!DOCTYPE html>
2023-11-17 14:09:06 +00:00
<html lang="en">
2023-11-17 13:29:34 +00:00
<head>
2023-11-17 14:09:06 +00:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-11-20 13:07:35 +00:00
<title>Download de certificado para WiFi</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
code {
background-color: #eee;
2023-11-20 18:23:17 +00:00
padding: 0.5em;
2023-11-20 13:07:35 +00:00
border-radius: 0.2em;
2023-11-20 18:23:17 +00:00
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;
2023-11-20 13:07:35 +00:00
}
</style>
2023-11-17 13:29:34 +00:00
</head>
<body>
<div style="text-align: center">
2023-11-20 18:23:17 +00:00
<h1 class="title">Download de certificado para WiFi</h1>
2023-11-17 13:50:26 +00:00
<p>
Clique no link abaixo para fazer download do certificado para conexão
2023-11-20 13:07:35 +00:00
com o WiFi:
2023-11-17 13:50:26 +00:00
</p>
2023-11-21 18:58:12 +00:00
<a class="btn" href="nps.pp.ifms.edu.br.cer" download>
2023-11-20 18:23:17 +00:00
Clique aqui para baixar o certificado
</a>
2023-11-20 13:07:35 +00:00
<p>Domínio: <code> nps.pp.ifms.edu.br </code></p>
2023-11-20 18:23:17 +00:00
<p>Senha do certificado: <code>ifmspp</code></p>
2023-11-17 13:29:34 +00:00
</div>
</body>
</html>