Imagining our data import steps

Developer
Size
3,095 Kb
Views
4,048

How do I make an imagining our data import steps?

What is a imagining our data import steps? How do you make a imagining our data import steps? This script and codes were developed by Jek Bao Choo on 19 January 2023, Thursday.

Imagining our data import steps Previews

Imagining our data import steps - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Imagining our data import steps</title> <link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/dropzone/4.0.1/min/dropzone.min.css'> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="jumbotron"> <h4>wisenet.co Data Import</h4> <p> Step 1: Download <a href="#" class="btn btn-link disabled">WiseNET_Client_Course_Unit_Template_v4.0.xlsx</a> and <a href="#" class="btn btn-link disabled">WiseNET_Enrolment_Template_v2.0.xlsx</a> </p> <p> Step 2: Fill in the wisenet template </p> <p> Step 3: Upload the completed wisenet template for validation </p> <div id="dropzone"> <div>Drag'n'drop wn template (.xlsx only) for validation</div> <input type="file" accept="image/png, application/pdf" /> </div> <p> Step 4: Wait for validation response (approx. 20 seconds). </p> <p> Step 5 (no error): If there are no errors, a support ticket will be automatically logged and our lovely wisenet Business Intelligent Developer will contact you shortly. </p> <p> Step 5 (with error): Please rectify the error and re-upload your .xlsx file. No support ticket will be logged. Alternatively, you can log us a ticket to clarify on the error message. </p> <p class="text-warning">===example of error message===</p> <p class="text-warning">ERROR_Cell_B4: Invalid date format</p> <p class="text-warning">ERROR_Cell_B5: Invalid date format</p> <p class="text-warning"> ERROR_Cell_E2E99: Exceeded maximum length</p>
</div>
<div style="width: 960px; height: 720px; margin: 10px; position: relative;"> <iframe allowfullscreen frameborder="0" style="width:960px; height:720px" src="https://www.lucidchart.com/documents/embeddedchart/c6d58891-c595-449e-a5d3-d047ef7b9b64" id="94sf2tjlVfAH"></iframe>
</div>
<p> Below is the sample code for the server validation.
</p>
<script src="https://gist.github.com/choopage/b46e2dcf04a9794c942e.js"></script> <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/dropzone/4.0.1/min/dropzone.min.js'></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Imagining our data import steps - Script Codes CSS Codes

#dropzone { position: relative; border: 10px dotted black; border-radius: 20px; color: black; font: bold 24px/200px arial; height: 200px; margin: 30px auto; text-align: center; width: 600px;
}
#dropzone.hover { border: 10px solid #FE5; color: #FE5;
}
#dropzone.dropped { background: #222; border: 10px solid #444;
}
#dropzone div { position: absolute; top: 0; right: 0; bottom: 0; left: 0;
}
#dropzone img { border-radius: 10px; vertical-align: middle; max-width: 95%; max-height: 95%;
}
#dropzone [type="file"] { cursor: pointer; position: absolute; opacity: 0; top: 0; right: 0; bottom: 0; left: 0;
}

Imagining our data import steps - Script Codes JS Codes

$(function() { $('#dropzone').on('dragover', function() { $(this).addClass('hover'); }); $('#dropzone').on('dragleave', function() { $(this).removeClass('hover'); }); $('#dropzone input').on('change', function(e) { var file = this.files[0]; $('#dropzone').removeClass('hover'); if (this.accept && $.inArray(file.type, this.accept.split(/, ?/)) == -1) { return alert('File type not allowed.'); } $('#dropzone').addClass('dropped'); $('#dropzone img').remove(); if ((/^image\/(gif|png|jpeg)$/i).test(file.type)) { var reader = new FileReader(file); reader.readAsDataURL(file); reader.onload = function(e) { var data = e.target.result, $img = $('<img />').attr('src', data).fadeIn(); $('#dropzone div').html($img); }; } else { var ext = file.name.split('.').pop(); $('#dropzone div').html(ext); } });
});
Imagining our data import steps - Script Codes
Imagining our data import steps - Script Codes
Home Page Home
Developer Jek Bao Choo
Username jek
Uploaded January 19, 2023
Rating 3
Size 3,095 Kb
Views 4,048
Do you need developer help for Imagining our data import steps?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Jek Bao Choo (jek) Script Codes
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!