13 lines
871 B
HTML
13 lines
871 B
HTML
<h1>ERROR occured whilst sending form data.</h1>
|
|
|
|
Please check your internet connection and try to <a type="submit" class="btn btn-success" onclick="ibuyproperties.sellForm.sendForm();">resubmit</a><br>
|
|
<b>... or alternatively send the data via <button class="btn btn-success" onclick="generateMail();" id="mailLink">e-mail</button>.</b>
|
|
|
|
<script>
|
|
function generateMail(){
|
|
var content="mailto:webmaster@i-buy.properties?subject=Property-Information - fallback&body=" + encodeURIComponent("DO NO MODIFY BELOW CONTENT!\r\n----------------------------------------SNIPP----------------------------------------\r\n" + JSON.stringify(ibuyproperties.helpers.toJSO($("#pnl_Sell"))) + "----------------------------------------SNAPP----------------------------------------");
|
|
console.log("Fallback Mail Content",content);
|
|
window.location.href=content;
|
|
}
|
|
</script>
|