JSFiddle - React, Tailwind, and code Playground

by akmiecik

HTML

<div class="wrap">
    <h2>WPMobileApp Push Notification</h2>
    <form name="wpmobileapp_push_form" method="post" action="">
      <table class="form-table">
        <tbody>
          <tr>
            <th scope="row"><label for="title">Title</label></th>
            <td><input name="title" type="text" id="title" value="" class="regular-text"></td>
          </tr>
          <tr>
            <th scope="row"><label for="wpmobileapp_push_message">Message</label></th>
            <td><textarea name="wpmobileapp_push_message" cols="60" rows="5" class="large-text code" id="wpmobileapp_push_message"></textarea></td>
          </tr>
          <tr>
            <th scope="row"><label for="wpmobileapp_push_image">Image</label></th>
            <td><input name="wpmobileapp_push_image" type="text" id="wpmobileapp_push_image" value="" class="regular-text"></td>
          </tr>
          <tr>
            <th scope="row"><label for="wpmobileapp_push_link">Link</label></th>
            <td><input name="wpmobileapp_push_link" type="text" id="wpmobileapp_push_link" value="" class="regular-text"></td>
          </tr>
          <tr>
            <th scope="row"><label for="wpmobileapp_push_user_email">User Email</label></th>
            <td><input name="wpmobileapp_push_user_email" type="text" id="wpmobileapp_push_user_email" value="" class="regular-text"></td>
          </tr>
        </tbody>
      </table>
      <p class="submit">
        <input type="submit" name="wpmobileapp_push_submit_button" id="wpmobileapp_push_submit_button" class="button button-primary" value="Send Push Notification">
      </p>
    </form>
  </div>