Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TelegramInstructions.vue « components « js - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2b515f6b80f3dd22cfa17af2c3b35e2a516c6c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
	<div>
		<p>
			In order to receive authentication codes via Telegram, you first
			have to start a new chat with the bot set up by your admin.<br>
			Secondly, you have to obtain your Telegram ID via the <a
				href="https://telegram.me/get_id_bot"
				target="_blank"
				rel="noreferrer noopener">ID Bot</a>.
			Enter this ID to receive your verification code below.
		</p>
	</div>
</template>

<script>
	export default {
		name: "TelegramInstructions"
	}
</script>