JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
	<title>ADP</title>

	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<meta http-equiv=expires content=0 />
	<meta http-equiv=Pragma content=no-cache />
	<meta content="payroll,human resource,benefits,HR,paycheck,ADP,payroll services,benefits administration,human resources,adp payroll,HR software,paychecks,payrolls,tax,paycheck deduction,human resource management,401(k) plan,human resource planning,retirement services,automatic data processing,time clock software,payroll outsourcing,benefit administration,payroll software,PEO,professional employer organization,HRIS,payroll processing,401(k),claim management,tax filing" name=keywords />
	<meta content="ADP, the payroll leader, offers benefit administration, human resource and retirement services for businesses of any size." name=description />
	<meta content=document name=resource-type />
	<meta content=global name=distribution />
	<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
	<meta content="all contents copyright 2015 Automatic Data Processing, all rights reserved." name=copyright />
	<link rel="stylesheet" href="css/login-main.css">
	<link rel="stylesheet" href="css/font-awesome.css">
	<style>
		body {
			/* background image override */
			background-image:  url(img/login-background-vantage.jpeg);
			background-size:   cover;
			background-repeat: no-repeat;
		}
	</style>


	<script>

		var newElm = function(objType, appendObj, objID, className, classText, mClick, mOut, mOver, mDwn, mSrc, mHtml, msAttrib, name) {
			var thisNDiv = document.createElement(objType);
			if (objID) {
				thisNDiv.id = objID
			}
			thisNDiv.className = className ? className : "";
			thisNDiv.name = name ? name : "";
			thisNDiv.style.cssText = classText ? classText : "";
			thisNDiv.onclick = mClick ? mClick : "";
			thisNDiv.onmouseout = mOut ? mOut : "";
			thisNDiv.onmouseover = mOver ? mOver : "";
			thisNDiv.onmousedown = mDwn ? mDwn : "";
			if (mSrc)...

JavaScript

'IEpopulateField.vbs
'Populates a form field

Option Explicit
On Error Resume Next

Dim url, ie

url = "https://workforcenow.adp.com/public/index.htm"
Set ie = WScript.CreateObject("InternetExplorer.Application", "ie_")
ie.Visible = true
ie.Navigate url

'Wait for page to load
Do While ie.Busy Or ie.ReadyState = 1
Loop

'Write value in the HTML form field named 'string'
objIE.Document.GetElementByID("mainLoginWrapper").getElementsbyTagName("input1").value = "[email protected]"

sub ie_onQuit
	WScript.Quit
end sub