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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-10 03:08:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-10 03:08:55 +0300
commit44a9f0d5c8339db14de6df522d114ef78791439f (patch)
tree94b0ab0ed5d27cca8a0466f2e119681d97661f28 /spec/frontend/fixtures/static
parent64786982930713d095ccd3aebd812182a1879fed (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/fixtures/static')
-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>