如何創建:社交登錄表單

學習如何使用 CSS 創建社交媒體登錄表單。

響應式社交登錄表單

親自試一試

如何創建社交登錄表單

第一步 - 添加 HTML:

使用 <form> 元素來處理輸入。您可以在我們的 PHP 教程中了解更多相關信息。

然后為每個字段添加輸入控件或社交媒體鏈接:

<div class="container">
  <form action="/action_page.php">
    <div class="row">
      <h2 style="text-align:center">Login with Social Media or Manually</h2>
      <div class="vl">
        <span class="vl-innertext">or</span>
      </div>
      <div class="col">
        <a href="#" class="fb btn">
          <i class="fa fa-facebook fa-fw"></i> Login with Facebook
        </a>
        <a href="#" class="twitter btn">
          <i class="fa fa-twitter fa-fw"></i> Login with Twitter
        </a>
        <a href="#" class="google btn">
          <i class="fa fa-google fa-fw"></i> Login with Google+
        </a>
      </div>
      <div class="col">
        <div class="hide-md-lg">
          <p>Or sign in manually:</p>
        </div>
        <input type="text" name="username" placeholder="Username" required>
        <input type="password" name="password" placeholder="Password" required>
        <input type="submit" value="Login">
      </div>
    </div>
  </form>
</div>
<div class="bottom-container">
  <div class="row">
    <div class="col">
      <a href="#" style="color:white" class="btn">Sign up</a>
    </div>
    <div class="col">
      <a href="#" style="color:white" class="btn">Forgot password?</a>
    </div>
  </div>
</div>

第二步 - 添加 CSS:

* {box-sizing: border-box}
/* 設置容器的樣式 */
.container {
  position: relative;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px 0 30px 0;
}
/* 設置輸入字段和鏈接按鈕的樣式 */
input,
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none; /* 刪除錨的下劃線 */
}
input:hover,
.btn:hover {
  opacity: 1;
}
/* 為 Facebook、Twitter 和 google 按鈕添加適當的顏色 */
.fb {
  background-color: #3B5998;
  color: white;
}
.twitter {
  background-color: #55ACEE;
  color: white;
}
.google {
  background-color: #dd4b39;
  color: white;
}
/* 設置提交按鈕的樣式 */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #45a049;
}
/* 兩列布局 */
.col {
  float: left;
  width: 50%;
  margin: auto;
  padding: 0 50px;
  margin-top: 6px;
}
/* 清除列后的浮動 */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* 垂直線 */
.vl {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  border: 2px solid #ddd;
  height: 175px;
}
/* 垂直線內的文字 */
.inner {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 10px;
}
/* 在中大屏幕上隱藏一些文本 */
.hide-md-lg {
  display: none;
}
/* 底部容器 */
.bottom-container {
  text-align: center;
  background-color: #666;
  border-radius: 0px 0px 4px 4px;
}
/* 響應式布局 - 當屏幕寬度小于 650px 時,使兩列堆疊在而不是并排 */
@media screen and (max-width: 650px) {
  .col {
    width: 100%;
    margin-top: 0;
  }
  /* 隱藏垂直線 */
  .vl {
    display: none;
  }
  /* 在小屏幕上顯示隱藏的文本 */
  .hide-md-lg {
    display: block;
    text-align: center;
  }
}

親自試一試

相關頁面

教程:HTML 表單

教程:CSS 表單