suggestions form

This commit is contained in:
zensprojects 2023-02-03 09:59:56 -08:00 committed by GitHub
parent 3e513e2d46
commit a671e5fd71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<html>
<head>
<title>Form</title>
<link rel="icon" href="/A-300.png">
<link rel="stylesheet" href="/w3css/w3.css">
<link href="https://fonts.cdnfonts.com/css/roblox-new" rel="stylesheet">
<style>
body,h1 {font-family: "Gotham Black", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('/netlifyforms/form.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
</style>
</head>
<body>
<div class="w3-display-container bgimg">
<form class="w3-display-middle" data-netlify="true" data-netlify-recaptcha="true" action="/netlifyforms/formcompleted.html">
<label for="suggestions">Suggestions</label><br>
<input type="text" id="sugegstions" name="suggestions" value="Make a..."><br>
<div data-netlify-recaptcha="true"></div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>