{% load socialaccount %} Django Social longin

Social login HOME

Django account 를 사용

로그인
{% if user.is_authenticated %} 로그아웃
{{ user.username }} 님 {% else %} 구글 로그인
{% endif %}
{{ mymessage }}

회원가입

{% csrf_token %}

로그인, 로그아웃

{% if user.is_authenticated %} 로그아웃
{{ user.username }} 님 {% else %}
{% csrf_token %}
{% endif %}

비밀번호 변경

{% if user.is_authenticated %} {{ user.username }} 님
{% csrf_token %}
{% endif %}

목록

{% if users %} {% for i in users %}
{{ i.username }} - {{ i.last_login }} - {{ i.point_amt }}
{% endfor %} {% else %}

No users...

{% endif %}