Welcome to mirror list, hosted at ThFree Co, Russian Federation.

oauth_remember_me.html « static « fixtures « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b4d482925daf366d2ffe07828e95eb1e6e96545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div id="oauth-container">
  <input id="remember_me" type="checkbox" />

  <form method="post" action="http://example.com/">
    <button class="js-oauth-login twitter" type="submit">
      <span>Twitter</span>
    </button>
  </form>

  <form method="post" action="http://example.com/">
    <button class="js-oauth-login github" type="submit">
      <span>GitHub</span>
    </button>
  </form>

  <form method="post" action="http://example.com/?redirect_fragment=L1">
    <button class="js-oauth-login facebook" type="submit">
      <span>Facebook</span>
    </button>
  </form>
</div>