48 lines
No EOL
1.5 KiB
HTML
48 lines
No EOL
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang=en data-bs-theme=dark>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<meta name=viewport content="width=device-width, initial-scale=1">
|
|
<title>Product Experience Survey</title>
|
|
<link rel=stylesheet type=text/css
|
|
href=https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css>
|
|
</head>
|
|
<body>
|
|
<h1 class=visually-hidden>Product Experience Survey</h1>
|
|
<main class=container>
|
|
<form class=py-5 action=/submit method=post>
|
|
<fieldset>
|
|
<legend>What do you value most in our software?</legend>
|
|
<ol>
|
|
<li>
|
|
<!-- FORM/CTRL -->
|
|
<div class=mb-3>
|
|
<label class="form-label group-psy-value"
|
|
for=group-psy-value-mostvalue>Most value</label>
|
|
<input class=form-control id=group-psy-value-mostvalue type=text
|
|
name=group-psy-value>
|
|
</div>
|
|
</ol>
|
|
<hr class=my-4>
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>What motivates you to use our software?</legend>
|
|
<ol>
|
|
<li>
|
|
<!-- FORM/CTRL -->
|
|
<div class=mb-3>
|
|
<label class="form-label group-psy-motivate"
|
|
for=group-psy-motivate-yourmotivation>Your motivation</label>
|
|
<input class=form-control id=group-psy-motivate-yourmotivation
|
|
type=text name=group-psy-motivate>
|
|
</div>
|
|
</ol>
|
|
<hr class=my-4>
|
|
</fieldset>
|
|
<button class="btn btn-primary" type=submit>Submit</button>
|
|
</form>
|
|
</main>
|
|
<script
|
|
src=https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js></script>
|
|
</body>
|
|
</html> |