Implement OTP and show received callbacks
This commit is contained in:
@@ -19,10 +19,10 @@ logger = logging.getLogger(__name__)
|
||||
# Create your views here
|
||||
|
||||
|
||||
class Home(View):
|
||||
class Home(LoginRequiredMixin, View):
|
||||
template_name = "index.html"
|
||||
|
||||
async def get(self, request):
|
||||
def get(self, request):
|
||||
return render(request, self.template_name)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user