ugl.taleo.net
Open in
urlscan Pro
68.233.76.181
Public Scan
URL:
https://ugl.taleo.net/careersection/profile.jss?lang=en&type=1&csNo=2&portal=101430233&iamRegisterAttribute=1&iamCode=...
Submission: On July 20 via api from US — Scanned from DE
Submission: On July 20 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /careersection/careersection/privacyagreement/statementBeforeAuthentification.jsf
<form id="dialogTemplate-dialogForm" method="post" action="/careersection/careersection/privacyagreement/statementBeforeAuthentification.jsf" enctype="application/x-www-form-urlencoded"><input type="hidden" id="dialogTemplate-dialogFormvmVSIds"
name="dialogTemplate-dialogFormvmVSIds" value="H4sIAAAAAAAAAFvzloG1hEFCPzmxKDW1qDg1uSQzP08/My8ltUIvqzitEgDUAUy9IAAAAA==">
<span class="accessmanagement"><span class="masterbody"><input id="dialogTemplate-dialogForm:flowHeader:ftlstate" type="hidden" name="dialogTemplate-dialogForm:flowHeader:ftlstate"><input id="dialogTemplate-dialogForm:flowHeader:cshtstate"
type="hidden" name="dialogTemplate-dialogForm:flowHeader:cshtstate"><input id="dialogTemplate-dialogForm:flowHeader:Logged" type="hidden" name="dialogTemplate-dialogForm:flowHeader:Logged" value="false">
<input type="hidden" name="iniurl.src" value="">
<script type="text/javascript" src="/careersection/2022PRD.1.0.30.3.0/js/mobile.js"></script>
<script type="text/javascript" src="/careersection/2022PRD.1.0.30.3.0/js/integration/iframes_communication.js"></script>
<script type="text/javascript" src="/careersection/2022PRD.1.0.30.3.0/js/integration/candidate_data_handler.js"></script>
<script type="text/javascript">
<!--
function crossFrameScripting() {
// TT#157678 - Prevent Frame usage. (esamson)
//if (AgentUtils.isIE)
//{
try {
if (self.document.domain.toString() != top.document.domain.toString()) {
throw "Access is denied";
}
} catch (exc) {
if (top != self) {
top.location = self.location;
}
}
//}
// /TT#157678 - Prevent Frame usage. (esamson)
}
//
-->
</script>
<script type="text/javascript">
crossFrameScripting()
</script>
<script type="text/javascript">
<!--
$(document).ready(function() {
window.setTimeout(function() {
$('.skype_pnh_container').html('');
$('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
}, 500);
});
//
-->
</script>
<script type="text/javascript">
<!--
function sendUIMessage2(msg) {
if (!document.createElement) {
return true;
}
// Notify our Flex app to keep the http feedback in sync
if (AKCore.mainFlexControlId_ != null) {
var flexObject = document.getElementById(AKCore.mainFlexControlId_);
if (flexObject && flexObject.notifyFlexUIMessage) {
flexObject.notifyFlexUIMessage(msg);
}
}
var url = contextPath_ + "/UIMessageReceiver.jss?msg=" + msg;
if (!msgSenderIFrame_ && document.createElement) {
// create the IFrame and assign a reference to the
// object to our global variable msgSenderIFrame_.
// this will only happen the first time
// sendUIMessage2() is called
try {
var tempIFrame = document.createElement('iframe');
tempIFrame.setAttribute('id', 'RSIFrame');
tempIFrame.style.border = '0';
tempIFrame.style.width = '0';
tempIFrame.style.height = '0';
tempIFrame.style.display = 'none';
tempIFrame.style.visibility = 'hidden';
tempIFrame.title = '';
tempIFrame.src = url;
msgSenderIFrame_ = document.body.appendChild(tempIFrame);
if (document.frames) {
// this is for IE5 Mac, because it will only
// allow access to the document object
// of the IFrame if we access it through
// the document.frames array
msgSenderIFrame_ = document.frames['RSIFrame'];
}
} catch (exception) {
// This is for IE5 PC, which does not allow dynamic creation
// and manipulation of an iframe object. Instead, we'll fake
// it up by creating our own objects.
iframeHTML = '\<iframe id="RSIFrame" title="" style="';
iframeHTML += 'border:0;';
iframeHTML += 'width:0;';
iframeHTML += 'height:0;';
iframeHTML += 'display:none;';
iframeHTML += 'visibility:hidden;';
iframeHTML += '"><\/iframe>';
document.body.innerHTML += iframeHTML;
msgSenderIFrame_ = {};
msgSenderIFrame_.document = {};
msgSenderIFrame_.document.location = {};
msgSenderIFrame_.document.location.iframe = document.getElementById('RSIFrame');
msgSenderIFrame_.document.location.replace = function(location) {
this.iframe.src = location;
}
}
}
if (navigator.userAgent.indexOf('Gecko') != -1 && !msgSenderIFrame_.contentDocument) {
// we have to give NS6 a fraction of a second
// to recognize the new IFrame
var func = "sendUIMessage2('" + url + "')";
setTimeout(func, 10);
return false;
}
var iFrameDoc = getIFrameDoc(msgSenderIFrame_);
if (iFrameDoc == null) {
return true;
}
iFrameDoc.location.replace(url);
return false;
}
function onUnload(pEvent) {
logViewInfo("unload");
// Invalidate the session when leaving the domain.
var ourForm = document.jsfForm();
// Invalidate the session when the window is explicitely closed.
var altUrl = ourForm['esmurl'];
// Invalidate the session when leaving the domain.
var isLogged = findElementsEndingWithId(document, "Logged", null, true)[0];
if (ourForm && ourForm['akPBISWLD'] && !ourForm['akPBISWLD'].dontcheckdomain && leavingDomain_ && isLogged.value == "true") {
invalidateSession();
if (altUrl != null) {
var tempIFrame = document.createElement('iframe');
tempIFrame.setAttribute('id', 'RSIFrame');
tempIFrame.style.border = '0';
tempIFrame.style.width = '0';
tempIFrame.style.height = '0';
tempIFrame.style.display = 'none';
tempIFrame.style.visibility = 'hidden';
tempIFrame.title = '';
tempIFrame.src = altUrl.value;
document.body.appendChild(tempIFrame);
}
}
}
//
-->
</script>
<script type="text/javascript">
<!--
function redirectSession() {
var expiredSessionUrl = findElementsEndingWithId(document, "expiredSessionUrl", null, true)[0];
window.location = contextPath_ + expiredSessionUrl.value;
}
//
-->
</script>
<script type="text/javascript">
<!--
function addEvent(el, evname, func) {
if (el.attachEvent) { // IE
el.attachEvent("on" + evname, func);
} else if (el.addEventListener) { // Gecko / W3C
el.addEventListener(evname, func, true);
} else {
el["on" + evname] = func;
}
}
function moveSkipNavToTop() {
var skipNavObj = findElementsEndingWithId(document, "gotoContent", null, true)[0];
if (skipNavObj) {
skipNavObj.parentNode.removeChild(skipNavObj);
document.body.insertBefore(skipNavObj, document.body.firstChild);
}
}
addEvent(window, "load", moveSkipNavToTop);
/**
* This method is used to find all H1, H2, H3, H4, H5 and H6 Tags in a HTML Page and if a Tag is empty,
* it is removed from the DOM Tree for accessibility reason.
*
* @since TT149196
* @author esamson
*/
function removeEmptyHeading() {
for (var i = 1; i <= 6; i++) {
var headings = document.getElementsByTagName("h" + i.toString());
if (headings) {
for (var hi = 0; hi < headings.length; hi++) {
var heading = headings[hi];
if (heading) {
var text;
if (document.all) {
// IE.
text = heading.innerText;
} else {
// FireFox.
text = heading.textContent;
}
// IE and FireFox have different representations of an empty content.
if (text == "" || text == " ") {
heading.parentNode.removeChild(heading);
// "headings" variable is an array, so when 1 node is removed from the Dom Tree,
// the array is updated too. So to avoid the next Tag to not be validated, we
// decrement the iterator counter for each element removed.
hi--;
}
}
}
}
}
}
addEvent(window, "load", removeEmptyHeading);
function unloadMess() {
var mess = "";
// Invalidate the session when leaving the domain.
var ourForm = document.jsfForm();
var isLogged = findElementsEndingWithId(document, "Logged", null, true)[0];
if (ourForm && ourForm['akPBISWLD'] && !ourForm['akPBISWLD'].dontcheckdomain && leavingDomain_ && isLogged.value == "true" && !sessionExpired) {
var field = findElementsEndingWithId(document, "ISWLDMessage", null, true)[0];
if (field) {
return field.value;
}
}
return;
}
addEvent(window, "beforeunload", unloadMess);
//
-->
</script>
<span class="headersection"><span class="box"><span class="boxtop"><span class="boxb1-top"></span><span class="boxb2-top"></span><span class="boxb3-top"></span><span class="boxb4-top"></span></span></span><input
id="dialogTemplate-dialogForm:flowHeader:ISWLDMessage" type="hidden" name="dialogTemplate-dialogForm:flowHeader:ISWLDMessage"><input id="dialogTemplate-dialogForm:flowHeader:expiredSessionUrl" type="hidden"
name="dialogTemplate-dialogForm:flowHeader:expiredSessionUrl" value="/careersection/public/jobsearch.ftl?lang=en"><span class="headerpanel"><span style="display: block; overflow: hidden;"><span class="userpanel leftpanel"><span
class="username">Welcome. You are not signed in.</span><span class="hidden-audible"> </span></span><span class="hidden-audible" aria-hidden="true"> | </span><span class="rightpanel"><span class="metapanel"><span
class="metagrouppanel"><span
class="metalink"></span><a id="dialogTemplate-dialogForm-flowHeader-loginAction" href="#" title="Log in to the system" onclick="if (!event) {event = window.event;}cmdSubmit('dialogTemplate-dialogForm','dialogTemplate-dialogForm-flowHeader-loginAction',null, null, true);return taleo.core.event.setAndReturnFalse(event);">Sign In/Register</a></span><span
class="metapanel"><span id="dialogTemplate-dialogForm-flowHeader-technicalHelpPanelTop" class="metalink"><span id="dialogTemplate-dialogForm-flowHeader-technicalHelpInfoTop">
<p style="margin-top: 0px; margin-bottom: 0px;"><span style="font-family:arial"><span style="font-size:1em">Need assistance applying or registering? See our
<a href="https://cimicdigital-cdn.azureedge.net/-/media/projects/cimic/ugl/pdfs/ugl_taleo_faq.pdf?la=en" rel="external" target="_blank">FAQ</a></span></span></p>
</span><span class="hidden-audible"> </span><img id="dialogTemplate-dialogForm:flowHeader:technicalHelpImgTop" src="/careersection/2022PRD.1.0.30.3.0/images/i_small_help_action.gif" alt="Technical help" title="Technical help"
class="technicalhelpimg"></span></span></span></span><span class="clearpanel"></span></span>
<ul class="linkpanel">
<li class="link" id="jobSearchTabActionS">
<span class="magnifierimg"></span><span
class="grouplink"><a id="dialogTemplate-dialogForm-flowHeader-jobSearchTabAction" href="#" title="Go to the section Job Search" onclick="if (!event) {event = window.event;}cmdSubmit('dialogTemplate-dialogForm','dialogTemplate-dialogForm-flowHeader-jobSearchTabAction',null, null, true);return taleo.core.event.setAndReturnFalse(event);">Job Search</a></span>
</li>
</ul>
</span><span class="link2panel"><span class="spacerlink2panel"></span></span></span><span id="dialogTemplate-dialogForm-masterbody"
class="mainsection"><a href="#" id="dialogTemplate-dialogForm-j_id_id9pc2" name="mainContent" class="hidden-audible" tabindex="-1">Beginning of the main content section.</a>
<input id="dialogTemplate-dialogForm:StatementBeforeAuthentificationContent:cookieDisabled" type="hidden" name="dialogTemplate-dialogForm:StatementBeforeAuthentificationContent:cookieDisabled" value="false"><span class="mainsection"><span
class="mastercontentpanel"><span class="blockpanel"><span class="metagrouppanel" style="display:inline;"><span class="metapanel" style="display: block; text-align: right; margin: 0px"><span
class="metalink2"><a href="#" role="button" title="View a printable version of the privacy agreement" onclick="if (!event) {event = window.event;}cmdSubmit('dialogTemplate-dialogForm','dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-j_id_id13pc6',null,'rO0ABXVyABxbTGNvbS50YWxlby5ha2lyYS51dGlsLlBhaXI7vF1o/6soCwQCAAB4cAAAAAFzcgAZY29tLnRhbGVvLmFraXJhLnV0aWwuUGFpcu5e8Mx5P5VjAgACTAAFZmlyc3R0ABJMamF2YS9sYW5nL09iamVjdDtMAAZzZWNvbmRxAH4AA3hwdAAWc2VsZWN0ZWRMb2NhbGVGb3JQYXJhbXQAAmVueQ==', true);return taleo.core.event.setAndReturnFalse(event);" class="nav-btn"><span class="nav-btn2"><span class="nav-btn3"><span class="nav-btn4"><span class="nav-btn5">Printable Format</span></span></span></span></a></span></span>
<script type="text/javascript">
<!--
function checkCookie() {
var cookieEnabled = navigator.cookieEnabled;
if (!cookieEnabled) {
document.cookie = "testcookie";
cookieEnabled = document.cookie.indexOf("testcookie") != -1;
}
findElementsEndingWithId(window.document.jsfForm(), 'cookieDisabled', null, true)[0].value = !cookieEnabled;
return cookieEnabled && ifCookieEnabled();
}
function ifCookieEnabled() {
var cookieErrorMessagePanelRef = findElementsEndingWithId(window.document.jsfForm(), 'cookieErrorMessagePanel', null, true)[0];
if (typeof cookieErrorMessagePanelRef != "undefined") cookieErrorMessagePanelRef.style.display = "none";
}
window.onload = checkCookie;
//
-->
</script>
<span id="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-cookieErrorMessagePanel" class="message-notification" style="display: none;"><span
id="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-cookieErrorMessageTitle" class="message-title">The action cannot be completed.</span><span class="hidden-audible"> </span><span
id="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-cookieErrorMessageContent" class="message-text">Cookies are not enabled on your browser. Please enable cookies in your browser preferences and refresh your
browser to continue.</span><span class="hidden-audible"> </span></span><span style="clear: both;"></span>
</span>
<h1 class="no-change-header"><span class="titlepage">Privacy Agreement</span><span class="hidden-audible"> </span></h1>
<fieldset class="no-border">
<div class="iframepanel" tabindex="0" lang="en">
<div><span style="font-family:arial"><span style="font-size:1em"><strong>Use of This Web Portal</strong> </span></span>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">T</span></span><span style="font-family:arial"><span style="font-size:1em">his web portal has been provided for the benefit of UGL PTY LTD (ACN 009 180 287)
(“<strong>UGL</strong>”) and its subsidiaries and related bodies corporate (as defined in the Corporations Act 2001 (Cth)) (these companies together the “<strong>UGL Group</strong>” or each individually a “<strong>UGL Group
Company</strong>”). </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">In order for any prospective employee, contractor or consultant: </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">(a) to progress an application for a specific role with the UGL Group advertised on this web-site; and/or </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">(b) to register their interest in working with the UGL Group, </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">t</span></span><span style="font-family:arial"><span style="font-size:1em">hrough this portal, UGL will request the provision of certain personal information. Should
your application be progressed, additional personal information may be requested and gathered in the course of any selection process and also throughout any subsequent employment within the UGL Group. All of this information
will become part of your employment records should you take up employment with the UGL Group. </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">You are not obliged to provide any of the information that will be now (or subsequently) requested from you, but it will assist relevant UGL Group Companies in the
consideration of your application and thereafter in your continuing employment and ongoing progression within the UGL Group. </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><strong>Collection, Storage, Use and Disclosure of Personal Information </strong></span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">Any personal information provided by you or otherwise collected about you by the UGL Group will be held by external service providers (including the Taleo
Corporation (USA)) on behalf of the UGL Group and the data may be stored in Australia and/or at other international locations. </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">Any personal information which we collect may be used by authorised UGL Group staff and/or their agents in Australia and/or in other international locations in
connection with: </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Your actual or possible work placement within the UGL Group; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Your performance appraisals; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Our assessment of your ongoing performance and prospects; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Any test or assessment (including medical tests and assessments) that you might be required to undergo for the purposes of your employment; </span></span>
</div>
<div><span style="font-family:arial"><span style="font-size:1em">• Our management of any complaint, investigation or inquiry in which you are involved; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Any insurance claim or proposal that requires disclosure of your personal or sensitive information; and </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• The marketing of UGL Group skills and services. While it is stored by us, your personal information may be accessed by and/or disclosed to: </span></span>
</div>
<div><span style="font-family:arial"><span style="font-size:1em">• UGL Group human resources personnel and relevant line managers with appropriate authorisation (subject to UGL Group employment policies) both in Australia and in
other international locations; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Our insurers; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Professional associations or registration bodies that have a proper interest in the disclosure of your personal and sensitive information; </span></span>
</div>
<div><span style="font-family:arial"><span style="font-size:1em">• Relevant workers compensation bodies; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Potential employers and clients of the UGL Group for the purposes of marketing and tenders for works and services (to the extent required to demonstrate
appropriate skills specified in relevant proposal documents); </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• Contractors and suppliers to the UGL Group involved in maintaining our employee/contractor databases; and • Any person with a lawful entitlement to obtain the
information. </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><strong>Access and Correction</strong> </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">Subject to any relevant law, you have the right to see and have a copy of personal information and sensitive information about you that we hold. If any personal
information or sensitive information about you is incorrect, you may request that we change that information. </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">You can make further enquiries about access to your personal information or about our privacy policies or regarding any complaints to UGL at this address
info@ugllimited.com</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">Consent re Personal Information By clicking the box "<strong>I Accept</strong>" below, you will be indicating your consent to the collection and use of personal
information in the manner described above. Unless you subsequently indicate to the contrary, your consent now will cover our collection and use of personal information obtained: </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• from you in your responses to the subsequent prompts in this web-service; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• in the course of any interviews with or assessments by UGL Group personnel and/or their agents whether from yourself or other publicly available
sources; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• pursuant to any medical examinations conducted for the purposes of considering your employment application, where these are required; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• from any referees or references or otherwise pursuant to inquiries that we might make of your former employers, work colleagues, professional associations or
registration body; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• in the context of any complaint from or about you in the workplace; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• in relation to a workplace accident in which you are involved; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• in the course of any insurance investigation, litigation, registration or professional disciplinary matter, criminal matter, inquest or inquiry in which you are
involved; </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">• otherwise in the course of your employment within the UGL Group pursuant to the implementation of relevant UGL Group employment policies. </span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em"><br>
</span></span></div>
<div><span style="font-family:arial"><span style="font-size:1em">If you do not wish to continue with this service, click "<strong>I Decline</strong>" and you will be returned to the previous web page (but we may thereafter be
limited in our ability to place you in a role within the UGL Group through this service).</span></span></div>
</div>
</div>
</fieldset><span class="separatorpanel"></span><input id="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-ContinueButton" type="button"
name="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-ContinueButton" value="I Accept" title="I Accept"
onclick="if (!event) {event = window.event;}cmdSubmit('dialogTemplate-dialogForm','dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-ContinueButton',null, null, true);return taleo.core.event.setAndReturnFalse(event);"><input
id="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-CancelButton" type="button" name="dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-CancelButton" value="I Decline" title="I Decline"
onclick="if (!event) {event = window.event;}cmdSubmit('dialogTemplate-dialogForm','dialogTemplate-dialogForm-StatementBeforeAuthentificationContent-CancelButton',null, null, true);return taleo.core.event.setAndReturnFalse(event);">
</span></span></span></span>
</span></span><input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState"
value="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"
autocomplete="off"><input type="hidden" id="stateSavers" name="stateSavers" value="H4sIAAAAAAAAAFvzloG1uIhBLiuxLFGvtCQzR885PycnNbkkMz+vWMU1t6CkMji1RPRrkewW5tMaTAwMFQWVADrPGpc0AAAA">
<input type="hidden" id="jsfCmdId" name="jsfCmdId" value="">
<input type="hidden" id="isLegalDisclaimerAcceptPending" name="isLegalDisclaimerAcceptPending">
<input type="hidden" id="bookmarkURLHF" name="bookmarkURLHF"
value="https://ugl.taleo.net/careersection/careersection/privacyagreement/statementBeforeAuthentification.jsf?cookieDisabled=null&isLegalDisclaimerAcceptPending=null&navigateTo=null&portal=101430233&redirectionURI=https://ugl.taleo.net/careersection/profile.jss?lang=en&type=1&csNo=2&portal=101430233&iamRegisterAttribute=1&iamCode=2955186">
<input type="hidden" id="tz" name="tz">
<input type="hidden" id="dialogTemplate-dialogForm" name="dialogTemplate-dialogForm" value="dialogTemplate-dialogForm">
<input type="hidden" id="langDirection" name="langDirection" value="ltr">
<input type="hidden" id="navigateTo" name="navigateTo">
<input type="hidden" id="vmAction" name="vmAction">
<input type="hidden" id="cookieDisabled" name="cookieDisabled">
<input type="hidden" id="bookmarkNameHF" name="bookmarkNameHF" value="Privacy Agreement">
<input type="hidden" id="tno" name="tno" value="0">
<input type="hidden" id="jsfCmdParams" name="jsfCmdParams">
<input type="hidden" id="portal" name="portal" value="101430233">
<input type="hidden" id="lang" name="lang" value="en">
<input type="hidden" id="csrftoken" name="csrftoken" value="kUbTBhv8RWtZfPpc1xpOaDJaK+KNV6VkTGsahiQ9ya8=">
<input type="hidden" id="redirectionURI" name="redirectionURI" value="https://ugl.taleo.net/careersection/profile.jss?lang=en&type=1&csNo=2&portal=101430233&iamRegisterAttribute=1&iamCode=2955186">
</form>
Text Content
Go to the main content section. * Suppliers & contractors * Parts & ordering * Contact us * About us * Our expertise * Our sectors * Our projects * Work with us * News & media * * Suppliers & contractors * Parts & ordering * Contact us * About us Welcome. You are not signed in. | Sign In/Register Need assistance applying or registering? See our FAQ * Job Search Beginning of the main content section. Printable Format The action cannot be completed. Cookies are not enabled on your browser. Please enable cookies in your browser preferences and refresh your browser to continue. PRIVACY AGREEMENT Use of This Web Portal This web portal has been provided for the benefit of UGL PTY LTD (ACN 009 180 287) (“UGL”) and its subsidiaries and related bodies corporate (as defined in the Corporations Act 2001 (Cth)) (these companies together the “UGL Group” or each individually a “UGL Group Company”). In order for any prospective employee, contractor or consultant: (a) to progress an application for a specific role with the UGL Group advertised on this web-site; and/or (b) to register their interest in working with the UGL Group, through this portal, UGL will request the provision of certain personal information. Should your application be progressed, additional personal information may be requested and gathered in the course of any selection process and also throughout any subsequent employment within the UGL Group. All of this information will become part of your employment records should you take up employment with the UGL Group. You are not obliged to provide any of the information that will be now (or subsequently) requested from you, but it will assist relevant UGL Group Companies in the consideration of your application and thereafter in your continuing employment and ongoing progression within the UGL Group. Collection, Storage, Use and Disclosure of Personal Information Any personal information provided by you or otherwise collected about you by the UGL Group will be held by external service providers (including the Taleo Corporation (USA)) on behalf of the UGL Group and the data may be stored in Australia and/or at other international locations. Any personal information which we collect may be used by authorised UGL Group staff and/or their agents in Australia and/or in other international locations in connection with: • Your actual or possible work placement within the UGL Group; • Your performance appraisals; • Our assessment of your ongoing performance and prospects; • Any test or assessment (including medical tests and assessments) that you might be required to undergo for the purposes of your employment; • Our management of any complaint, investigation or inquiry in which you are involved; • Any insurance claim or proposal that requires disclosure of your personal or sensitive information; and • The marketing of UGL Group skills and services. While it is stored by us, your personal information may be accessed by and/or disclosed to: • UGL Group human resources personnel and relevant line managers with appropriate authorisation (subject to UGL Group employment policies) both in Australia and in other international locations; • Our insurers; • Professional associations or registration bodies that have a proper interest in the disclosure of your personal and sensitive information; • Relevant workers compensation bodies; • Potential employers and clients of the UGL Group for the purposes of marketing and tenders for works and services (to the extent required to demonstrate appropriate skills specified in relevant proposal documents); • Contractors and suppliers to the UGL Group involved in maintaining our employee/contractor databases; and • Any person with a lawful entitlement to obtain the information. Access and Correction Subject to any relevant law, you have the right to see and have a copy of personal information and sensitive information about you that we hold. If any personal information or sensitive information about you is incorrect, you may request that we change that information. You can make further enquiries about access to your personal information or about our privacy policies or regarding any complaints to UGL at this address info@ugllimited.com Consent re Personal Information By clicking the box "I Accept" below, you will be indicating your consent to the collection and use of personal information in the manner described above. Unless you subsequently indicate to the contrary, your consent now will cover our collection and use of personal information obtained: • from you in your responses to the subsequent prompts in this web-service; • in the course of any interviews with or assessments by UGL Group personnel and/or their agents whether from yourself or other publicly available sources; • pursuant to any medical examinations conducted for the purposes of considering your employment application, where these are required; • from any referees or references or otherwise pursuant to inquiries that we might make of your former employers, work colleagues, professional associations or registration body; • in the context of any complaint from or about you in the workplace; • in relation to a workplace accident in which you are involved; • in the course of any insurance investigation, litigation, registration or professional disciplinary matter, criminal matter, inquest or inquiry in which you are involved; • otherwise in the course of your employment within the UGL Group pursuant to the implementation of relevant UGL Group employment policies. If you do not wish to continue with this service, click "I Decline" and you will be returned to the previous web page (but we may thereafter be limited in our ability to place you in a role within the UGL Group through this service). * About us * Our company * Our approach * Our principles * Leadership * Ethics Line * Our expertise * Engineering design * Construction * Manufacturing * Ops & maintenance * Asset management * Upgrades & overhauls * Facilities management * Our sectors * Power * Water * Resources * Transport * Defence & security * Social infrastructure * Our projects * Our projects * Case studies * Health & safety * Sustainability * Careers * Job search * The UGL difference * Career development * Employee benefits * Diversity & inclusion * FAQs * News & Media * Latest news * In the community * Contact us * Privacy policy * Terms & conditions * *