49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<title>Tourist Attractions</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
|
|
|
|
<h1 class="page-titulo__tourist" data-test="title-form">Adicionar um Ponto Turístico</h1>
|
|
|
|
<div class="container-input">
|
|
|
|
<div class="wrapper-input__img">
|
|
<label>
|
|
<input type="file" data-test="input-image">
|
|
<span>Imagem</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="wrapper-input__text">
|
|
<input class="input-text__titulo" type="text" placeholder="Titulo" data-test="input-titulo">
|
|
<input class="input-text__descricao" type="text" placeholder="Descrição" data-test="input-descrição">
|
|
|
|
<div class="wrapper-button-submit">
|
|
<button class="button-submit__input" type="submit" data-test="button-submit">Adicionar</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<h1 class="page-titulo__img__spot">Pontos Turísticos</h1>
|
|
|
|
<div>
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
</html> |