ICEI-PUC-Minas-PMGCC-TI
/
ti-1-pmg-cc-m-20241-g2-dificuldade-dos-vestibulandos-de-estudar-em-grupo-2
Public
generated from webtech-network/ti1-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81fc76f
commit 2dfa9e2
Showing
7 changed files
with
1,139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt"> | ||
<head> | ||
<link href='https://fonts.googleapis.com/css?family=KoHo' rel='stylesheet'> | ||
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'> | ||
<link rel="stylesheet" type="text/css" href="style.css" media="screen" /> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>COLLABORA</title> | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<button id="edit-me">COLLABORA</button> | ||
<div> | ||
<button>PLANOS</button> | ||
<button>MINHA CONTA</button> | ||
<button>AJUDA</button> | ||
<button>SALAS</button> | ||
</div> | ||
<button>LOGIN/SIGN IN</button> | ||
</div> | ||
<div class="intro"> | ||
<p>Escolha sua sala</p> | ||
</div> | ||
<div class="content"> | ||
<div class="content-box">Ciências Humanas e suas Tecnologias.</div> | ||
<div class="content-box">Ciênciasda Natureza e suas Tecnologias.</div> | ||
<div class="content-box">Linguagens, Códigos e suas Tecnologias.</div> | ||
<div class="content-box">Matemática e suas Tecnologias.</div> | ||
<div class="content-box">Redação</div> | ||
</div> | ||
<div class="botao"><button>Crie Uma Sala</button></div> | ||
<div class="footer"> | ||
<p>℗ All Rights Reserved.</p> | ||
</div> | ||
<script> | ||
const jsondata = { | ||
"html": { | ||
"lang": "pt", | ||
"head": { | ||
"links": [ | ||
{"href": "https://fonts.googleapis.com/css?family=KoHo", "rel": "stylesheet"}, | ||
{"href": "https://fonts.googleapis.com/css?family=Inter", "rel": "stylesheet"}, | ||
{"href": "style.css", "rel": "stylesheet", "media": "screen"} | ||
], | ||
"meta": [ | ||
{"charset": "UTF-8"}, | ||
{"name": "viewport", "content": "width=device-width, initial-scale=1.0"} | ||
], | ||
"title": "COLLABORA" | ||
}, | ||
"body": { | ||
"header": { | ||
"button": {"id": "edit-me", "text": "COLLABORA"}, | ||
"buttons": [ | ||
{"text": "PLANOS"}, | ||
{"text": "MINHA CONTA"}, | ||
{"text": "AJUDA"}, | ||
{"text": "SALAS"} | ||
], | ||
"loginButton": {"text": "LOGIN/SIGN IN"} | ||
}, | ||
"intro": {"text": "Escolha sua sala"}, | ||
"content": { | ||
"boxes": [ | ||
{"text": "Ciências Humanas e suas Tecnologias."}, | ||
{"text": "Ciênciasda Natureza e suas Tecnologias."}, | ||
{"text": "Linguagens, Códigos e suas Tecnologias."}, | ||
{"text": "Matemática e suas Tecnologias."}, | ||
{"text": "Redação"} | ||
] | ||
}, | ||
"footer": {"text": "℗ All Rights Reserved."} | ||
} | ||
} | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
const express = require('express'); | ||
const bodyParser = require('body-parser'); | ||
|
||
const app = express(); | ||
const port = 3000; | ||
|
||
// Configuração do body-parser para análise de dados de formulário | ||
app.use(bodyParser.urlencoded({ extended: true })); | ||
|
||
// Configuração do mecanismo de visualização para EJS | ||
app.set('view engine', 'ejs'); | ||
|
||
// Rota para a página inicial | ||
app.get('/', (req, res) => { | ||
res.render('index'); | ||
}); | ||
|
||
// Rota para lidar com as inscrições | ||
app.post('/subscribe', (req, res) => { | ||
const email = req.body.email; | ||
// Aqui você pode adicionar a lógica para salvar o e-mail no banco de dados ou enviá-lo para um serviço de e-mail marketing | ||
// Por enquanto, apenas respondemos com uma mensagem simples | ||
res.send(`Obrigado por se inscrever, ${email}!`); | ||
}); | ||
|
||
// Inicia o servidor | ||
app.listen(port, () => { | ||
console.log(`Server is running on http://localhost:${port}`); | ||
}); |
Oops, something went wrong.