www.acotoronto.ca Open in urlscan Pro
50.87.195.38  Public Scan

Submitted URL: http://www.acotoronto.ca/building.php?ID=8944
Effective URL: https://www.acotoronto.ca/building.php?ID=8944
Submission: On December 19 via manual from BR — Scanned from CA

Form analysis 4 forms found in the DOM

POST

<form method="post" id="reset_password_form">
  <div id="the_message_goes_here">
    <div class="row">
      <div class="md-form mb-3 col-md-12">
        <p id="top_form_error2a" class="form_error fw-bold" style="display: none;">&nbsp;</p>
        <p class="grey1 lh-10">Please enter your email address and new password twice. Password must be at least 6 characters in length</p>
      </div>
      <!--Body-->
    </div>
    <div class="row">
      <div class="md-form mb-3 col-md-12">
        <input type="email" name="your_email" id="your_email" required="" placeholder="Your Email" class="form-control validate white-text">
        <label data-error="wrong" id="your_email_error_message" data-success="right" for="your_email">
          <span id="your_email_error_message1" class="form_error fw-bold" style="display: none;">This is a required field.</span>
          <span id="your_email_error_message2" class="form_error fw-bold" style="display: none;">Email address is not in the system</span>
          <span id="your_email_error_message3" class="form_error fw-bold" style="display: none;">Email does not match one from the request.</span>
        </label>
      </div>
    </div>
    <div class="row">
      <div class="md-form mb-3 col-md-12">
        <input type="password" id="reset_password" name="reset_password" placeholder="Type a new password" required="" class="form-control validate white-text" style="margin-bottom: 10px;">
        <input type="password" id="reset_password2" name="reset_password2" placeholder="Retype your password" required="" class="form-control validate white-text">
        <label data-error="wrong" id="your_password_error_messagea" data-success="right" for="reset_password">
          <span id="your_password_error_message1" class="form_error fw-bold" style="display: none;">This is a required field.</span>
          <span id="your_password_error_message2" class="form_error fw-bold" style="display: none;">The passwords do not match</span>
          <span id="your_password_error_message3" class="form_error fw-bold" style="display: none;">Password must me at least 6 characters in length</span>
        </label>
      </div>
    </div>
    <!--Grid row-->
    <div class="row d-flex align-items-center mb-3">
      <!--Grid column-->
      <div class="text-center mb-3 col-md-12">
        <button type="button" id="resetPassForm" class="btn btn-success btn-block btn-rounded blue3_bk z-depth-1">Request password reset</button>
      </div>
      <!--Grid column-->
    </div>
    <!--Grid row-->
  </div>
  <!--Grid row-->
  <div class="row">
    <!--Grid column-->
    <div class="col-md-12">
      <p class="font-small ont-weight-bold blue3 d-flex">Back to Login <a href="#" id="back_login_link2" class="ms-1 fw-bold"><span class="blue1">click here</span></a></p>
    </div>
    <!--Grid column-->
  </div>
  <script>
    $(document).ready(function() {
      $("#resetPassForm").click(function() {
        // disable button
        $(this).prop("disabled", true);
        // add spinner to button
        $(this).html('<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Loading');
      });
      document.getElementById('back_login_link2').addEventListener('click', function(event) {
        event.preventDefault();
        $('#ResetPasswordModalForm').modal('hide');
        $('#loginModalForm').modal('show')
      }, false);
      // CLEAR ERRORS ON CLICK EMAIL
      $('#your_email').focus(function() {
        $('#your_email_error_message1').css('display', 'none');
        $('#your_email_error_message2').css('display', 'none');
        $('#your_email_error_message3').css('display', 'none');
        $('#your_email').removeClass("form_error_border");
      });
      // CLEAR ERRORS ON CLICK PASSWORD 1
      $('#reset_password').focus(function() {
        $('#your_password_error_message1').css('display', 'none');
        $('#your_password_error_message2').css('display', 'none');
        $('#your_password_error_message3').css('display', 'none');
        $('#reset_password').removeClass("form_error_border");
        $('#reset_password2').removeClass("form_error_border");
      });
      // CLEAR ERRORS ON CLICK PASSWORD 2
      $('#reset_password2').focus(function() {
        $('#your_password_error_message1').css('display', 'none');
        $('#your_password_error_message2').css('display', 'none');
        $('#your_password_error_message3').css('display', 'none');
        $('#reset_password').removeClass("form_error_border");
        $('#reset_password2').removeClass("form_error_border");
      });
      // SUBMIT HAS BEEN CLICKED
      $("#resetPassForm").click(function(event) {
        event.preventDefault();
        var loginFormHasErrors3 = 0;
        // CHECK IF THE EMAIL FIELD IS BLANK
        if ($('#your_email').val() == '') {
          $("#your_email").addClass("form_error_border");
          $('#your_email_error_message1').css('display', 'block');
          $('#resetPassForm').prop("disabled", false);
          $('#resetPassForm').html("Request password reset");
          loginFormHasErrors3 = 1;
        }
        // IS IT THE RIGHT EMAIL ADDRERSS?
        var questioned_email = '';
        if ($('#your_email').val() != '') {
          if ($('#your_email').val() != questioned_email) {
            $("#your_email").addClass("form_error_border");
            $('#your_email_error_message3').css('display', 'block');
            $('#resetPassForm').prop("disabled", false);
            $('#resetPassForm').html("Request password reset");
            loginFormHasErrors3 = 1;
          }
        }
        // IS PASSWORD 1 BLANK
        if ($('#reset_password').val() == '') {
          $("#reset_password").addClass("form_error_border");
          $('#your_password_error_message1').css('display', 'block');
          $('#resetPassForm').prop("disabled", false);
          $('#resetPassForm').html("Request password reset");
          loginFormHasErrors3 = 1;
        }
        // IS PASSWORD 2 BLANK
        if ($('#reset_password2').val() == '') {
          $("#reset_password2").addClass("form_error_border");
          $('#your_password_error_message1').css('display', 'block');
          $('#resetPassForm').prop("disabled", false);
          $('#resetPassForm').html("Request password reset");
          loginFormHasErrors3 = 1;
        }
        // IS THE PASSWORD OVER SIX CHARACTERS LONG?
        if ($('#reset_password').val() != '') {
          if ($('#reset_password2').val() != '') {
            if ($('#reset_password').val() == $('#reset_password2').val()) {
              var passlength = $('#reset_password').val();
              if (passlength.length < 6) {
                $("#reset_password").addClass("form_error_border");
                $("#reset_password2").addClass("form_error_border");
                $('#your_password_error_message3').css('display', 'block');
                $('#resetPassForm').prop("disabled", false);
                $('#resetPassForm').html("Request password reset");
                loginFormHasErrors3 = 1;
              }
            }
          }
        }
        // DO THE PASSWORDS MATCH?
        if ($('#reset_password').val() != '') {
          if ($('#reset_password2').val() != '') {
            if ($('#reset_password').val() != $('#reset_password2').val()) {
              $('#your_password_error_message2').css('display', 'block');
              $("#reset_password").addClass("form_error_border");
              $("#reset_password2").addClass("form_error_border");
              $('#resetPassForm').prop("disabled", false);
              $('#resetPassForm').html("Request password reset");
              loginFormHasErrors3 = 1;
            }
          }
        }
        if (loginFormHasErrors3 == 1) {
          return false;
        }
        var myDatareset = $('#reset_password_form').serialize();
        $.ajax({
          type: "POST", //define the type of ajax call (POST, GET, etc)
          url: "reset_passsword.php", //The name of the script you are calling
          data: myDatareset, //Your data you are sending to the script
          success: function(msg) {
            if (msg == 0) {
              $("#your_email").addClass("form_error_border");
              $('#your_email_error_message2').css('display', 'block');
              $('#resetPassForm').prop("disabled", false);
              $('#resetPassForm').html("Request password reset");
              return false;
            }
            if (msg == 1) {
              $('#the_message_goes_here').html(
                '<p class="grey1 fw-bold" style="font-size: 1.2em">Your password has been reset successfully.</p><p class="grey1 fw-bold" style="font-size: 1.2em">You may now use your new password to login to the site.</p>');
            }
          }
        });
      });
      /*				
      	var myData = $('#get_lost_email').serialize();

      	
      */
      return false;
    });
  </script>
  <!--Grid row-->
</form>

POST actions/log_admin_in.php

<form method="post" id="loginForm" action="actions/log_admin_in.php">
  <input type="hidden" name="the_page_id" value="2">
  <p class="grey1 lh-10">Please Enter your Email address and Password below to login.</p>
  <!--Body-->
  <div class="md-form mb-3">
    <input type="email" name="login_email" id="login_email" required="" placeholder="Your Email Address" class="form-control validate white-text">
    <label data-error="wrong" id="login_email_error_message" data-success="right" for="login_email">
      <span id="login_email_error_message1" class="form_error fw-bold" style="display: none;">This is a required field</span>
      <span id="login_email_error_message2" class="form_error fw-bold" style="display: none;">This email address is not in our system.</span></label>
    <span id="login_email_error_message3" class="form_error fw-bold" style="display: none;">Your Account has not been setup yet.</span>
    <span id="login_email_error_message4" class="form_error fw-bold" style="display: none;">You are currently on hold</span>
  </div>
  <div class="md-form pb-3">
    <input type="password" name="login_password" id="login_password" required="" placeholder="Your Password" class="form-control validate white-text">
    <label data-error="wrong" id="login_password_error_message" data-success="right" for="login_password">
      <span id="login_password_error_message1" class="form_error fw-bold" style="display: none;">This is a required field</span>
      <span id="login_password_error_message2" class="form_error fw-bold" style="display: none;">Login incorrect</span>
    </label>
  </div>
  <!--Grid row-->
  <div class="row d-flex align-items-center mb-4">
    <!--Grid column-->
    <div class="text-center mb-3 col-md-12">
      <button type="button" id="subloginForm" style="width: 100%;" class="btn btn-success btn-block btn-rounded blue3_bk z-depth-1">SIGN IN</button>
    </div>
    <!--Grid column-->
  </div>
  <!--Grid row-->
  <!--Grid row-->
  <div class="row">
    <!--Grid column-->
    <div class="col-md-12">
      <p class="font-small blue3 d-flex fw-bold">Lost your password? <a href="#" id="lost_pass_link" class="ms-2 fw-bold"><span class="blue1">click here</span></a></p>
    </div>
    <script>
      $(document).ready(function() {
        $("#subloginForm").click(function() {
          // disable button
          $(this).prop("disabled", true);
          // add spinner to button
          $(this).html('<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Loading');
          var myData = $('#loginForm').serialize();
          $.ajax({
            type: "POST", //define the type of ajax call (POST, GET, etc)
            url: "/login.php", //The name of the script you are calling
            data: myData, //Your data you are sending to the script
            success: function(msg) {
              //alert(msg);
              if (msg == 1) {
                $('#login_email').addClass("form_error_border");
                $('#login_email_error_message2').css('display', 'block');
                $('#subloginForm').prop("disabled", false);
                $('#subloginForm').html("SIGN IN");
                return false;
              }
              if (msg == 2) {
                $('#login_password').addClass("form_error_border");
                $('#login_password_error_message2').css('display', 'block');
                $('#subloginForm').prop("disabled", false);
                $('#subloginForm').html("SIGN IN");
                return false;
              }
              if (msg == 4) {
                $('#login_password').addClass("form_error_border");
                $('#login_email_error_message4').css('display', 'block');
                $('#subloginForm').prop("disabled", false);
                $('#subloginForm').html("SIGN IN");
                return false;
              }
              if (msg == 5) {
                $('#login_password').addClass("form_error_border");
                $('#login_email_error_message3').css('display', 'block');
                $('#subloginForm').prop("disabled", false);
                $('#subloginForm').html("SIGN IN");
                return false;
              }
              if (msg == 3) {
                var theemail = $("input[name=login_email]").val();
                var thepageid = "2";
                document.location = "login_user_pre.php?email=" + theemail + "&thepageid=" + thepageid;
              }
            }
          });
        });
        $('#login_email').focus(function() {
          $('#login_email_error_message1').css('display', 'none');
          $('#login_email').removeClass("form_error_border");
          $('#login_email_error_message2').css('display', 'none');
          $('#subloginForm').prop("disabled", false);
          $('#subloginForm').html("SIGN IN");
        });
        $('#login_password').focus(function() {
          $('#login_password_error_message1').css('display', 'none');
          $('#login_password').removeClass("form_error_border");
          $('#login_password_error_message2').css('display', 'none');
          $('#subloginForm').prop("disabled", false);
          $('#subloginForm').html("SIGN IN");
        });
        document.getElementById('lost_pass_link').addEventListener('click', function(event) {
          event.preventDefault();
          $('#loginModalForm').modal('hide');
          $('#lostPasswordModalForm').modal('show');
        }, false);
        $("#subloginForm").click(function(event) {
          event.preventDefault();
          var loginFormHasErrors = 0;
          if ($('#login_email').val() == '') {
            $("#login_email").addClass("form_error_border");
            $('#login_email_error_message1').css('display', 'block');
            $('#subloginForm').prop("disabled", false);
            $('#subloginForm').html("SIGN IN");
            var loginFormHasErrors = 1;
          }
          if ($('#login_password').val() == '') {
            $("#login_password").addClass("form_error_border");
            $('#login_password_error_message1').css('display', 'block');
            $('#subloginForm').prop("disabled", false);
            $('#subloginForm').html("SIGN IN");
            var loginFormHasErrors = 1;
          }
          if (loginFormHasErrors == 1) {
            return false;
          }
        });
        return false;
      });
    </script>
    <!--Grid column-->
  </div>
  <!--Grid row-->
</form>

POST

<form method="post" id="Set_up_account_form">
  <div id="the_message_goes_here2">
    <div class="row">
      <div class="md-form mb-3 col-md-12">
        <p id="top_form_error2" class="form_error font-weight-bold" style="display: none;">&nbsp;</p>
        <p class="grey1 lh-10">Please enter your email address and a password twice. Your password must be at least 6 characters in length</p>
      </div>
      <!--Body-->
    </div>
    <div class="row">
      <div class="md-form mb-3 col-md-12">
        <input type="email" name="your_email2" id="your_email2" required="" placeholder="Email" class="form-control validate white-text">
        <label data-error="wrong" id="your_email2_error_message" data-success="right" for="your_email2">
          <span id="your_email2_error_message1" class="form_error font-weight-bold" style="display: none;">This is a required field</span>
          <span id="your_email2_error_message2" class="form_error font-weight-bold" style="display: none;">This email address does not match the one used to setup the account.</span>
        </label>
      </div>
    </div>
    <div class="row">
      <div class="md-form mb-3 col-md-12">
        <input type="password" id="new_password" name="new_password" placeholder="Password" required="" class="form-control validate white-text" style="margin-bottom: 10px;">
        <input type="password" id="new_password2" name="new_password2" placeholder="Retype Password" required="" class="form-control validate white-text">
        <label data-error="wrong" id="your_password_error_message" data-success="right" for="new_password">
          <span id="your_password2_error_message1" class="form_error font-weight-bold" style="display: none;">This is a required field</span>
          <span id="your_password2_error_message2" class="form_error font-weight-bold" style="display: none;">Passwords don't match</span>
          <span id="your_password2_error_message3" class="form_error font-weight-bold" style="display: none;">Passwords must be at least 6 characters in length</span>
        </label>
      </div>
    </div>
    <!--Grid row-->
    <div class="row d-flex align-items-center mb-3">
      <!--Grid column-->
      <div class="text-center mb-3 col-md-12">
        <button type="button" id="SetupAccount" class="btn btn-success btn-block btn-rounded blue3_bk z-depth-1">SETUP ACCOUNT</button>
      </div>
      <!--Grid column-->
    </div>
    <!--Grid row-->
  </div>
  <script>
    $(document).ready(function() {
      $("#SetupAccount").click(function() {
        // disable button
        $(this).prop("disabled", true);
        // add spinner to button
        $(this).html('<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Loading');
      });
      // CLEAR ERRORS ON CLICK EMAIL
      $('#your_email2').focus(function() {
        $('#your_email2_error_message1').css('display', 'none');
        $('#your_email2_error_message2').css('display', 'none');
        $('#your_email2').removeClass("form_error_border");
      });
      // CLEAR ERRORS ON CLICK PASSWORD 1
      $('#new_password').focus(function() {
        $('#your_password2_error_message1').css('display', 'none');
        $('#your_password2_error_message2').css('display', 'none');
        $('#your_password2_error_message3').css('display', 'none');
        $('#new_password').removeClass("form_error_border");
        $('#new_password2').removeClass("form_error_border");
      });
      // CLEAR ERRORS ON CLICK PASSWORD 2
      $('#new_password2').focus(function() {
        $('#your_password2_error_message1').css('display', 'none');
        $('#your_password2_error_message2').css('display', 'none');
        $('#your_password2_error_message3').css('display', 'none');
        $('#new_password').removeClass("form_error_border");
        $('#new_password2').removeClass("form_error_border");
      });
      // SUBMIT HAS BEEN CLICKED
      $("#SetupAccount").click(function(event) {
        event.preventDefault();
        var loginFormHasErrors3 = 0;
        // CHECK IF THE EMAIL FIELD IS BLANK
        if ($('#your_email2').val() == '') {
          $("#your_email2").addClass("form_error_border");
          $('#your_email2_error_message1').css('display', 'block');
          $('#SetupAccount').prop("disabled", false);
          $('#SetupAccount').html("SETUP ACCOUNT");
          loginFormHasErrors3 = 1;
        }
        // IS IT THE RIGHT EMAIL ADDRERSS?
        var questioned_email2 = '';
        if ($('#your_email2').val() != '') {
          if ($('#your_email2').val() != questioned_email2) {
            $("#your_email2").addClass("form_error_border");
            $('#your_email2_error_message2').css('display', 'block');
            $('#SetupAccount').prop("disabled", false);
            $('#SetupAccount').html("SETUP ACCOUNT");
            loginFormHasErrors3 = 1;
          }
        }
        // IS PASSWORD 1 BLANK
        var new_password = $('#new_password').val();
        if ($('#new_password').val() == '') {
          $("#new_password").addClass("form_error_border");
          //alert(new_password);
          $('#your_password2_error_message1').css('display', 'block');
          $('#SetupAccount').prop("disabled", false);
          $('#SetupAccount').html("SETUP ACCOUNT");
          loginFormHasErrors3 = 1;
        }
        // IS PASSWORD 2 BLANK
        if ($('#new_password2').val() == '') {
          $("#new_password2").addClass("form_error_border");
          //alert("HERE 2");
          $('#your_password2_error_message1').css('display', 'block');
          $('#SetupAccount').prop("disabled", false);
          $('#SetupAccount').html("SETUP ACCOUNT");
          loginFormHasErrors3 = 1;
        }
        // IS THE PASSWORD OVER SIX CHARACTERS LONG?
        if ($('#new_password').val() != '') {
          if ($('#new_password2').val() != '') {
            if ($('#new_password').val() == $('#new_password2').val()) {
              var passlength = $('#new_password').val();
              if (passlength.length < 6) {
                $("#new_password").addClass("form_error_border");
                $("#new_password2").addClass("form_error_border");
                $('#your_password2_error_message3').css('display', 'block');
                $('#SetupAccount').prop("disabled", false);
                $('#SetupAccount').html("SETUP ACCOUNT");
                loginFormHasErrors3 = 1;
              }
            }
          }
        }
        // DO THE PASSWORDS MATCH?
        if ($('#new_password').val() != '') {
          if ($('#new_password2').val() != '') {
            if ($('#new_password').val() != $('#new_password2').val()) {
              $('#your_password2_error_message2').css('display', 'block');
              $("#new_password").addClass("form_error_border");
              $("#new_password2").addClass("form_error_border");
              $('#SetupAccount').prop("disabled", false);
              $('#SetupAccount').html("SETUP ACCOUNT");
              loginFormHasErrors3 = 1;
            }
          }
        }
        if (loginFormHasErrors3 == 1) {
          return false;
        }
        var myDatareset = $('#Set_up_account_form').serialize();
        $.ajax({
          type: "POST", //define the type of ajax call (POST, GET, etc)
          url: "includes/usermanagment_finalze_account.php", //The name of the script you are calling
          data: myDatareset, //Your data you are sending to the script
          success: function(msg) {
            if (msg == 1) {
              $('#the_message_goes_here2').html(
                '<p class="grey1 font-weight-bold" style="font-size: 1.2em">Your account has been setup successfully.</p><p class="grey1 font-weight-bold" style="font-size: 1.2em">You may now use your account to login to the site.</p>'
                );
            }
          }
        });
      });
      /*				
      	var myData = $('#get_lost_email').serialize();

      	
      */
      return false;
    });
  </script>
  <!--Grid row-->
</form>

POST

<form method="post" id="get_lost_email">
  <div id="message_holder" class="row">
    <input type="hidden" name="the_page_id" id="lost_the_page_id2" value="2">
    <p class="grey1 lh-10">Enter your email address and we will send you a link to reset your password.</p>
    <!--Body-->
    <div class="md-form mb-3 col-md-12">
      <input type="email" id="lost_email" name="lost_email" placeholder="Your Email" required="" class="form-control validate white-text">
      <label data-error="wrong" id="lost_email_error_message" data-success="right" for="lost_email">
        <span id="lost_email_error_message1" class="form_error fw-bold" style="display: none;">This is a required field</span>
        <span id="lost_email_error_message2" class="form_error fw-bold" style="display: none;">This email address is not in our system.</span>
      </label>
    </div>
    <div class="md-form mb-3 col-md-12">
      <button type="button" id="sublostForm" class="btn btn-success btn-block btn-rounded blue3_bk z-depth-1 w-100">Request Password Reset</button>
    </div>
  </div>
  <div class="row">
    <div class="col-md-12">
      <p class="font-small blue3 d-flex fw-bold">Back to login <a href="#" id="back_login_link" class="ms-2 fw-bold"><span class="blue1">click here</span></a></p>
    </div>
  </div>
  <!--Grid row-->
  <!--Grid column-->
  <script>
    $(document).ready(function() {
      $("#sublostForm").click(function() {
        // disable button
        $(this).prop("disabled", true);
        // add spinner to button
        $(this).html('<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Loading');
      });
      $('#lost_email').focus(function() {
        $('#lost_email_error_message1').css('display', 'none');
        $('#lost_email_error_message2').css('display', 'none');
        $('#sublostForm').prop("disabled", false);
        $('#sublostForm').html("Request Password Reset");
        $('#lost_email').removeClass("form_error_border");
      });
      document.getElementById('back_login_link').addEventListener('click', function(event) {
        event.preventDefault();
        $('#lostPasswordModalForm').modal('hide');
        $('#loginModalForm').modal('show');
      }, false);
      $("#sublostForm").click(function(event) {
        event.preventDefault();
        var loginFormHasErrors2 = 0;
        if ($('#lost_email').val() == '') {
          $("#lost_email").addClass("form_error_border");
          $('#lost_email_error_message1').css('display', 'block');
          $('#sublostForm').prop("disabled", false);
          $('#sublostForm').html("Request Password Reset");
          loginFormHasErrors2 = 1;
        }
        if (loginFormHasErrors2 == 1) {
          return false;
        }
        var myData = $('#get_lost_email').serialize();
        $.ajax({
          type: "POST", //define the type of ajax call (POST, GET, etc)
          url: "reset_pass.php", //The name of the script you are calling
          data: myData, //Your data you are sending to the script
          success: function(msg) {
            if (msg == 0) {
              $('#lost_email').addClass("form_error_border");
              $('#lost_email_error_message2').css('display', 'block');
              $('#sublostForm').prop("disabled", false);
              $('#sublostForm').html("Request Password Reset");
              return false;
            }
            if (msg != 0) {
              var the_reset_email = $("#lost_email").val();
              var the_page_id = $("#lost_the_page_id2").val();
              $.post("send_reset_request.php", {
                reset_email: the_reset_email,
                reset_page_id: the_page_id
              }, function(data) {
                if (data == 1) {
                  $('#message_holder').html('<div class="text-center mb-3 col-md-12"><p class="grey1 fw-bold">We have sent you a reset password email to your email address: ' + $('#lost_email').val() +
                    '</p><p class="grey1 fw-bold">Please check your inbox to continue. If not there also check your junkmail folder</p></div>');
                  $('#le_first_titel').html('CHECK YOUR');
                  $('#le_second_title').html('EMAIL');
                } else {
                  alert("There was a problem sending the email please try again.");
                }
              });
            }
          }
        });
      });
      return false;
    });
  </script>
  <!--Grid column-->
  <!--Grid row-->
</form>

Text Content

Loading Please Wait




Loading Please Wait


The past. Our present. Your future.




 * ABOUT
 * TOBUILT
 * MEMBERS
 * FREE RESOURCES
 * AT RISK
 * NEWS
 * EVENTS
 * SHOP

TOBuilt SEARCH:   BACK TO RESULTS   FULL RECORD   NEW SEARCH


EMERY YARD

LAST UPDATE: January 31 2022 login to edit this building
photo credit, courtesy of Bob Krawczyk




Next
BUILDING INFORMATION
Name & Location:
Emery Yard
27 Toryork Drive
Toronto
Humber Summit
Year Completed:
0
OTHER IDENTIFICATION
Notes:

This building houses offices for Toronto Parks, Forests and Recreation. It won
an Award of Merit by the Governor General's Awards for Architecture in 1994.

Status:
Completed
Map:

←Move left→Move right↑Move up↓Move down+Zoom in-Zoom outHomeJump left by
75%EndJump right by 75%Page UpJump up by 75%Page DownJump down by 75%

To navigate, press the arrow keys.






Map
 * Terrain

Satellite
 * Labels












Keyboard shortcuts
Map DataMap data ©2024 Google
Map data ©2024 Google

10 m 

Click to toggle between metric and imperial units
Terms
Report a map error
Companies:
The following companies are associated with this building
 * Architect - Julian-Jacob Architects Ltd.  <-- More buildings by this
   architect.
 * Builder - Harbridge + Cross
 * Mechanical engineer - Mancini Saldan
 * Structural engineer - Frank Anrep and Associates Ltd.

BUILDING DATA
Building Type:
Low-rise
Current Use:
Office
Heritage Status:
No heritage status
Sources:
Click to see 2 Source(s)

SOURCES FOR EMERY YARD

 1. Architecture Canada
    Date - 1994
    Page - 158-165
    
    
 2. Toronto Star
    Author - Christopher Hume
    Date - August 13, 1992
    Page - H3
    
    

Close
TOBuilt SEARCH:   BACK TO RESULTS   FULL RECORD   NEW SEARCH
© 2024 ACO Toronto


RESET PASSWORD

 

Please enter your email address and new password twice. Password must be at
least 6 characters in length

This is a required field. Email address is not in the system Email does not
match one from the request.
This is a required field. The passwords do not match Password must me at least 6
characters in length
Request password reset

Back to Login click here

Top


LOADING PLEASE WAIT

Loading...


ACO TORONTO SIGN IN

Please Enter your Email address and Password below to login.

This is a required field This email address is not in our system. Your Account
has not been setup yet. You are currently on hold
This is a required field Login incorrect
SIGN IN

Lost your password? click here


SETUP ADMIN ACCOUNT

 

Please enter your email address and a password twice. Your password must be at
least 6 characters in length

This is a required field This email address does not match the one used to setup
the account.
This is a required field Passwords don't match Passwords must be at least 6
characters in length
SETUP ACCOUNT


LOST PASSWORD

Enter your email address and we will send you a link to reset your password.

This is a required field This email address is not in our system.
Request Password Reset

Back to login click here

SUCCESS

Updated successful.

FAILED

There was an issue while updateing.