2019-09-28 15:20:56 +00:00
|
|
|
<html lang="en">
|
2019-10-19 06:45:14 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Form Hero</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
padding: 1em;
|
|
|
|
margin: 0;
|
|
|
|
font-family: 'Courier New', Courier, monospace;
|
|
|
|
}
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
section {
|
|
|
|
text-align: center;
|
|
|
|
max-width: 25em;
|
|
|
|
margin: 1em auto;
|
|
|
|
padding: 1em;
|
|
|
|
background-color: #f3f3f3;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
box-shadow: 0 8px 16px -16px rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
input {
|
|
|
|
font-size: 1.25em;
|
|
|
|
display: block;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
border-radius: 1em;
|
|
|
|
width: 100%;
|
|
|
|
outline: none;
|
|
|
|
border: 0.15em solid white;
|
|
|
|
}
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
input:focus,
|
|
|
|
input:hover {
|
|
|
|
border-color: #31def5;
|
|
|
|
}
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
input[type='submit'] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
input[type='checkbox'] {
|
|
|
|
display: inline;
|
|
|
|
width: initial;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
<body>
|
|
|
|
<section>
|
|
|
|
<h3>Open the console to see the submitted data</h3>
|
|
|
|
</section>
|
|
|
|
<section id="simple"></section>
|
|
|
|
<section id="errors"></section>
|
|
|
|
<section id="select"></section>
|
|
|
|
<section id="custom"></section>
|
2019-09-28 15:20:56 +00:00
|
|
|
|
2019-10-19 06:45:14 +00:00
|
|
|
<script src="./simple.tsx"></script>
|
|
|
|
<script src="./errorsAndValidation.tsx"></script>
|
|
|
|
<script src="./select.tsx"></script>
|
|
|
|
<script src="./custom.tsx"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|