-
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
Elto Borges
authored and
Elto Borges
committed
Aug 18, 2024
1 parent
46aec86
commit 96a1081
Showing
9 changed files
with
213 additions
and
110 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 |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Questionário de Metas</title> | ||
<link rel="stylesheet" href="src/css/styles.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<link rel="stylesheet" href="src/css/styles.css"> | ||
</head> | ||
<body class="ask-body"> | ||
<header class="ask-header"> | ||
|
@@ -25,10 +25,18 @@ <h1><span class="askheader-span"><i class="fa-solid fa-dumbbell"></i> U</span>GY | |
<span class="ask-step"></span> | ||
<span class="ask-step"></span> | ||
<span class="ask-step"></span> | ||
<span class="ask-step"></span> | ||
<span class="ask-step"></span> | ||
</div> | ||
|
||
<!-- Etapa 1 --> | ||
|
||
<div class="ask-form-step active"> | ||
<input type="text" name="singupname" id="singupname" placeholder="Digite seu primeiro nome"> | ||
<input type="text" name="singuplastname" id="singuplastname" placeholder="Digite seu sobrenome"> | ||
<button class="ask-continue-button">Continuar</button> | ||
</div> | ||
|
||
<!-- Etapa 1 --> | ||
<div class="ask-form-step "> | ||
<h2>Qual a sua meta?</h2> | ||
<button class="ask-option-button">Definição e emagrecimento</button> | ||
<button class="ask-option-button">Aumento de Força</button> | ||
|
@@ -55,11 +63,20 @@ <h2>Quantos dias da semana você deseja treinar?</h2> | |
<!-- Etapa 4 --> | ||
<div class="ask-form-step"> | ||
<h2>Você possui alguma doença ou condição médica?</h2> | ||
<button class="ask-option-button" onclick="handleOptionChange('Sim')">Sim</button> | ||
<button class="ask-option-button" onclick="handleOptionChange('Não')">Não</button> | ||
<button class="ask-option-button" onclick="handleOptionChange('Sim', 'disease-input')">Sim</button> | ||
<button class="ask-option-button" onclick="handleOptionChange('Não', 'disease-input')">Não</button> | ||
<input type="text" id="disease-input" placeholder="Digite sua resposta" style="display: none;"> | ||
<button class="ask-continue-button">Continuar</button> | ||
</div> | ||
|
||
<div class="ask-form-step"> | ||
<h2>Você possui alguma condição especial?</h2> | ||
<button class="ask-option-button" onclick="handleOptionChange('Sim', 'special-condition-input')">Sim</button> | ||
<button class="ask-option-button" onclick="handleOptionChange('Não', 'special-condition-input')">Não</button> | ||
<input type="text" id="special-condition-input" placeholder="Digite sua resposta" style="display: none;"> | ||
<button class="ask-continue-button">Continuar</button> | ||
</div> | ||
|
||
|
||
<!-- Etapa 5 --> | ||
<div class="ask-form-step"> | ||
|
@@ -112,6 +129,6 @@ <h2>Envie uma foto sua para o perfil</h2> | |
</div> | ||
</main> | ||
|
||
<script src="src/javascript/askscript.js"></script> | ||
<script src="src/javascript/askscript.js" ></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
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
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
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
Oops, something went wrong.