Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
brunafelizali authored Jul 1, 2024
1 parent 81fc76f commit 2dfa9e2
Show file tree
Hide file tree
Showing 7 changed files with 1,139 additions and 0 deletions.
79 changes: 79 additions & 0 deletions index.html
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>
29 changes: 29 additions & 0 deletions index.js
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}`);
});
Loading

0 comments on commit 2dfa9e2

Please sign in to comment.