mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-23 00:06:27 +00:00
19 lines
499 B
HTML
19 lines
499 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
<title>FairEmail - OAuth</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>FairEmail OAuth</h1>
|
||
|
<script>
|
||
|
function oauth() {
|
||
|
document.location = 'eu.faircode.email://oauth' + window.location.search;
|
||
|
}
|
||
|
</script>
|
||
|
<button onclick="oauth()">Continue</button>
|
||
|
</body>
|
||
|
</html>
|