form builder hints

pull/105/head
Alex Turchyn 2 years ago
parent a72882ce0f
commit 28290c4635

@ -29,7 +29,7 @@
{{ message }} {{ message }}
</div> </div>
<div class="text-xs"> <div class="text-xs">
<span class="font-medium">Click to upload</span> or drag and drop <span class="font-medium">Click to upload</span> or drag and drop files
</div> </div>
</div> </div>
</div> </div>

@ -29,7 +29,7 @@
{{ message }} {{ message }}
</div> </div>
<div class="text-sm"> <div class="text-sm">
<span class="font-medium">Click to upload</span> or drag and drop <span class="font-medium">Click to upload</span> or drag and drop files
</div> </div>
</div> </div>
</div> </div>

@ -67,6 +67,25 @@
</div> </div>
</button> </button>
</div> </div>
<div
v-if="fields.length < 4"
class="text-xs p-2 border border-base-200 rounded"
>
<ui>
<li>
Draw a text field on the page with a mouse
</li>
<li>
Single click of the page to add a checkbox
</li>
<li>
Drag &amp; drop any other field type on the page
</li>
<li>
Click on the field type above to add it to the form without drawing it on the document
</li>
</ui>
</div>
</template> </template>
<script> <script>

@ -28,7 +28,7 @@
Verify Signed PDF Verify Signed PDF
</div> </div>
<div class="text-xs"> <div class="text-xs">
<span class="font-medium">Click to upload</span> or drag and drop <span class="font-medium">Click to upload</span> or drag and drop files
</div> </div>
</div> </div>
<input id="file" name="files[]" class="hidden" data-action="change:file-dropzone#onSelectFiles" data-target="file-dropzone.input" type="file" accept="application/pdf" multiple> <input id="file" name="files[]" class="hidden" data-action="change:file-dropzone#onSelectFiles" data-target="file-dropzone.input" type="file" accept="application/pdf" multiple>

@ -44,5 +44,8 @@
<%= svg_icon('send', class: 'h-5 w-5') %> <%= svg_icon('send', class: 'h-5 w-5') %>
Tell about us Tell about us
</a> </a>
<a href="mailto:<%= Docuseal::SUPPORT_EMAIL %>" target="_blank" class="w-full block mt-4 underline text-center">
<%= Docuseal::SUPPORT_EMAIL %>
</a>
</div> </div>
</div> </div>

@ -9,6 +9,7 @@ module Docuseal
DISCORD_URL = 'https://discord.com/invite/B5wg5wKk' DISCORD_URL = 'https://discord.com/invite/B5wg5wKk'
TWITTER_URL = 'https://twitter.com/docusealco' TWITTER_URL = 'https://twitter.com/docusealco'
TWITTER_HANDLE = '@docusealco' TWITTER_HANDLE = '@docusealco'
SUPPORT_EMAIL = 'support@docuseal.co'
CERTS = JSON.parse(ENV.fetch('CERTS', '{}')) CERTS = JSON.parse(ENV.fetch('CERTS', '{}'))

Loading…
Cancel
Save