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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/fixtures/static/oauth_remember_me.html')
-rw-r--r--spec/frontend/fixtures/static/oauth_remember_me.html22
1 files changed, 19 insertions, 3 deletions
diff --git a/spec/frontend/fixtures/static/oauth_remember_me.html b/spec/frontend/fixtures/static/oauth_remember_me.html
index 9ba1ffc72fe..c6af8129b4d 100644
--- a/spec/frontend/fixtures/static/oauth_remember_me.html
+++ b/spec/frontend/fixtures/static/oauth_remember_me.html
@@ -1,6 +1,22 @@
<div id="oauth-container">
<input id="remember_me" type="checkbox">
-<a class="oauth-login twitter" href="http://example.com/"></a>
-<a class="oauth-login github" href="http://example.com/"></a>
-<a class="oauth-login facebook" href="http://example.com/?redirect_fragment=L1"></a>
+
+<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>