53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Salvar Post</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Salvar Post</h2>
|
|
<form id="postForm">
|
|
<label for="author">Autor:</label>
|
|
<input type="text" id="author" name="author" readonly>
|
|
|
|
<label for="authorProfileLink">Link do Perfil do Autor:</label>
|
|
<input type="text" id="authorProfileLink" name="authorProfileLink" readonly>
|
|
|
|
<label for="postLink">Link do Post:</label>
|
|
<input type="text" id="postLink" name="postLink" readonly>
|
|
|
|
<label for="date">Data:</label>
|
|
<input type="text" id="date" name="date" readonly>
|
|
|
|
<label for="content">Conteúdo:</label>
|
|
<textarea id="content" name="content" rows="4" readonly></textarea>
|
|
|
|
<label for="category">Categoria:</label>
|
|
<select id="category" name="category">
|
|
<option value="">Selecione uma categoria</option>
|
|
<option value="Marketing">Marketing</option>
|
|
<option value="Vendas">Vendas</option>
|
|
<option value="Tecnologia">Tecnologia</option>
|
|
<!-- Adicione outras categorias conforme necessário -->
|
|
</select>
|
|
|
|
<button type="button" id="saveButton">Salvar</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Popup de confirmação -->
|
|
<div id="successPopup" class="popup" style="display: none;">
|
|
<div class="popup-content">
|
|
<p>O post foi enviado com sucesso!</p>
|
|
<div class="popup-buttons">
|
|
<button id="cancelButton">Fechar</button>
|
|
<button id="viewButton">Visualizar Swipe File</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |