Bootstrap 社交按钮
我正在使用Twitter Bootstrap 2的社交按钮。但是不知道为什么,按钮上的Facebook "f"标志没有显示出来。以下是我的前端代码:
{% include "meddy1/header.html" %}
{% load staticfiles %}
<link href="../../static/meddy1/css/social-buttons-3.css" rel="stylesheet">
<link href="../../../bootstrap-social-gh-pages/bootstrap-social.css" rel="stylesheet">
<link href="../../../font-awesome-4.2.0/css/font-awesome.css" rel="stylesheet">
<!-- CSS links -->
<link href="{% static "meddy1/css/login-signup.css" %}" rel="stylesheet" media="screen">
<link href="{% static "meddy1/css/login-signup-responsive.css" %}" rel="stylesheet" media="screen">
<!-- End CSS links -->
<div class="wrapper">
<div class="container">
<!-- Log In -->
<div class="login">
<h1> SIGN UP </h1>
{% if user.is_authenticated and not user.is_superuser %}
<h3>Hi {{ user.first_name }}. Thanks for loggin in!</h3>
{% else %}
<buttton class="btn btn-facebook"><a href="{% url 'social:begin' 'facebook' %}?next={{ index }}" class="fa fa-facebook"> | Signup with Facebook</a></buttton>
{% endif %}
<h4> OR </h4>
<form action="" method="post" id="user_uploader" enctype="multipart/form-data"> {% csrf_token %}
{% for field in form.visible_fields %}
{{ field.errors }}
{{ field.help_text }}
{{ field }}
{% endfor %}
<p class="alert">By Clicking “Sign Up” below, you are agreeing to the Meddy <a href="/terms">Terms of Service</a> and <a href="/privacy">Privacy Policy</a></p>
<button class="btn btn-primary" type="submit" name="submit" id="ss-submit">SIGN UP</button>
<form></form>
<button class="btn btn-facebook"><i class="fa fa-facebook"></i> | Connect with Facebook</button>
</div>
<!-- End Log In -->
</div>
</div>
<!-- End Content -->
</body>
</html>
{% include "meddy1/footer.html" %}
我是不是漏掉了什么重要的文件链接?我搞不清楚为什么Facebook的标志不显示。我的网页应用是用Django做的。
2 个回答
0
看起来你在按钮标签里面缺少了i标签:
<i class="fa fa-facebook"></i>
这样的话,你的代码应该像这样:
<buttton class="btn btn-facebook"><a href="{% url 'social:begin' 'facebook' %}?next={{ index }}" class="fa fa-facebook"><i class="fa fa-facebook"></i> | Signup with Facebook</a></buttton>
1
我搞明白了。我需要加上这一行:
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">