REGISTRATIONSFOR YOUR NEXT EVENT
OR JUST A FEEDBACK SECTION IN YOUR WEBSITE
FORM HANDLING
CAN'T BE MADE EASIER THAN THIS
NAME TEAM NAME CONTACT EMAIL
NAME FEEDBACK
FEEL FREE TO TAKE AND MODIFY THE CODE FOR ABOVE FORMS
HTMLCSS
        
          <!-- FORM CONTAINING EMAIL FIELD -->
          <div class="samp sb1">
          <form action="https://forms.dash.management/submit?userid=USER_ID&formid=FORM_ID" method="POST">
          <span class="label">NAME</span>
          <input class="inpf" type="text" name="Name" required>
          <span class="label">TEAM NAME</span>
          <input class="inpf" type="text" name="Team_Name" required>
          <span class="label">CONTACT EMAIL</span><br>
          <input class="inpf" type="email" name="Email" required>
          <div style="display: flex; justify-content: end;">
          <input class="submitbutton" type="submit" value="REGISTER">
          </div>
          </form> 
          </div>
          
          <!-- FORM CONTAINING TEXT AREA -->
          <div class="samp sb2">
          <form action="https://forms.dash.management/submit?userid=USER_ID&formid=FORM_ID" method="POST">
          <span class="label">NAME</span>
          <input class="inpf" type="text" name="Name" required>
          <span class="label">FEEDBACK</span>
          <textarea class="inpf txtarea" type="text" name="Feedback" required></textarea>
          <div style="display: flex; justify-content: end;">
          <input class="submitbutton" type="submit" value="SUBMIT">
          </div>
          </form> 
          </div>
          
        
        
          .samp{
            width: 100%;
            max-width: 400px;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 20px 40px 0px rgba(0,0,0,0.2);
          }
          
          .sb2{
            background: linear-gradient(-45deg, rgb(30, 210, 255), rgb(38, 155, 255));
          }
          
          .sb1{
            background: linear-gradient(-45deg, #269BFF, rgb(171, 123, 255));
          }
          
          .label{
            color: #fff;
            font-size: small;
          }
          
          .inpf{
            border: none;
            width: 100%;
            max-width: 100%;
            padding: 7px 15px;
            margin-top: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            color: #fff;
            background-color: rgba(255, 255, 255, 0.2);
          }
          
          .txtarea{
            min-width: 100%;
            min-height: 100px;
            max-height: 200px;
          }
          
          .submitbutton{
            margin:20px 0 5px 0;
            padding: 7px 15px;
            border: 1px solid #fff;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0);
            color: #fff;
          }
          .submitbutton:hover{
            background: rgba(255, 255, 255);
            color: #269BFF;
          }
          
        
      
IT'S MORE THAN JUST AN API
Activate or deactivate a form channel,
change redirection URLs, and protect
against spam by adding trusted domains,
all without having to redeploy your site
CHANNEL 1 (For registration)ACTIVATED
Redirect on successful submission
https://yourwebsite.com/thankYouPage
Redirect when channel is deactivated
https://yourwebsite.com/new
Trusted domains
https://www.yourwebsite.com, https://www.yourotherwebsite.com
SAVE
FOCUS ON YOUR CREATIVITY, NOT SERVERS
Dash Forms can handle hundreds of responses per second per channel
and can store millions of them, ready for you to access anytime.
Get started with 4 easy steps
  • Visit Dash Forms console.
  • Create a channel.
  • Copy the API link and paste it in the action attribute of your form.
    Don't forget to add method="POST"
  • Start receiving submissions and enjoy the time you just saved.