This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/frontend/html/reset.html
T
Yuri Kuznetsov 99195313c5 add frontend
2014-04-11 11:44:02 +03:00

16 lines
339 B
HTML

<!doctype html>
<html>
<head>
<title>EspoCRM</title>
</head>
<script type="text/javascript">
for (var i in localStorage) {
delete localStorage[i];
}
var link = window.location.href.replace('/reset', '');
document.write('Local storage has been cleared.<br><p><a href="'+link+'">Back to CRM</a></p>');
</script>
</html>