import 'dart:io'; import 'package:angel_framework/angel_framework.dart'; import 'options.dart'; /// Displays a default callback page to confirm authentication via popups. AngelAuthCallback confirmPopupAuthentication({String eventName: 'token'}) { return (req, ResponseContext res, String jwt) async { res ..contentType = ContentType.HTML ..write('''
Now logging you in... If you continue to see this page, you may need to enable JavaScript.
'''); return false; }; }