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: c6af8129b4d8c5d8f8d15ce4326189e795074352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div id="oauth-container">
<input id="remember_me" type="checkbox">

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

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

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

</div>