Bin
2025-12-16 7423b0c6e1959f30a7e8e453e953310f32ce13c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends 'simple.html' %}
{% load i18n %}
{% load static %}
{% load filters %}
 
{% block head %}
<link rel="stylesheet" href="{{ settings.HOSTNAME }}{% static 'css/login.css' %}" />
 
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129877673-1"></script>
<script nonce="{{request.csp_nonce}}">
  window.dataLayer = window.dataLayer || [];
  function gtag() { dataLayer.push(arguments); }
  gtag('js', new Date());
  gtag('config', 'UA-129877673-1');
</script>
{% endblock %}
 
{% block content %}
<div class="login_page">
  <h1>欢迎使用 Label Studio 社区版 {{versions.package.short_version}}</h1>
  <h2>全流程、全模态的开源数据标注平台</h2>
 
  <img src="{{ settings.HOSTNAME }}{% static 'images/opossum_hanging.svg' %}" height="128px" />
 
  <div class="toggle">
    {% if not settings.DISABLE_SIGNUP_WITHOUT_LINK %}
    <a href="{{ settings.HOSTNAME }}/user/signup" class="{% if 'signup' in request.path %}active{% endif %}">注册</a>
    <a href="{{ settings.HOSTNAME }}/user/login" class="{% if 'login' in request.path %}active{% endif %}">登录</a>
    {% endif %}
  </div>
 
  {% block user_content %}
  {% endblock %}
  {% endblock %}