22 lines
680 B
HTML
22 lines
680 B
HTML
<HTML>
|
|
<title>HTML Editor Modal Check for Save box</title>
|
|
<head>
|
|
<style>
|
|
INPUT {background:#E0DFE3;}
|
|
</style>
|
|
</head>
|
|
<BODY style="color:black; background:#E0DFE3; margin:10px; text-align:center; overflow:hidden; font-family:verdana; font-size:70%">
|
|
|
|
<img src="UI_save_alert.gif" align="absmiddle">
|
|
Save changes to this document?
|
|
|
|
|
|
<BR><BR>
|
|
<input type='button' onclick="returnValue=true;window.close();" value="Yes" style="width:60px;">  
|
|
<input type='button' onclick="returnValue=false;window.close();" value="No" style="width:60px">  
|
|
<input type='button' onclick="returnValue=null;window.close();" value="Cancel" style="width:65px">
|
|
<BR><BR>
|
|
</BODY>
|
|
</HTML>
|
|
|