3

有没有办法改变 Google Apps 这个糟糕的默认登录页面?

登录页面

我想使用我将放在 login.jmorais.com 上的自定义登录页面。那可能吗?我怎样才能做到这一点?

4

4 回答 4

1

gControl 是一个与谷歌应用程序域集成的插件,并提供更多自定义和跟踪您的域。您可以轻松自定义谷歌应用登录页面、登陆页面等。你可以看看这里:

http://www.cloudcodes.com/gcontrol.html

于 2013-09-20T06:17:18.397 回答
1

那时我也面临同样的问题,但我在 Google Apps Marketplace 中找到了 gLogin 。这个应用程序解决了我的问题。你也可以试试。

于 2013-03-19T11:42:39.643 回答
1

将 Google 托管的登录页面替换为您自己的唯一官方方法是使用 SAML 单点登录 (SSO)。SSO 将 Google 的用户身份验证流程替换为您自己的流程,但长期设置或维护并非易事。

http://support.google.com/a/bin/answer.py?hl=en&answer=60224

https://developers.google.com/google-apps/sso/saml_reference_implementation

如果您将 Google Apps 用户存储在 Active Directory、另一个 LDAP 数据库或某种中央数据库中,则可以使用 SSO 对他们进行身份验证。与 Active Directory 一起使用的最常见(免费)之一是 Active Directory Federation Services 2.0 (ADFS)。

以下是描述 Google Apps 的 ADFS 设置的演练:http: //support.google.com/a/bin/answer.py ?hl=en&answer=60224

于 2012-12-11T12:51:03.603 回答
0

如果您可以插入 Gapps 后端,应该是可能的。我自己没有测试过,但这对我来说很有意义......

<form action="https://www.google.com/a/login.jmorais.com/LoginAction2?service=mail" method="post">
 <input type="hidden" name="ltmpl"
             value="default">
  <input type="hidden" name="ltmplcache"
             value="2">
  <input type="hidden" name="continue" id="continue"
           value="https://mail.google.com/a/login.jmorais.com/" />
  <input type="hidden" name="service" id="service"
           value="mail" />
  <input type="hidden" name="rm" id="rm"
           value="false" />
  <input type="hidden" name="dsh" id="dsh"
           value="2563131929050950430" />
  <input type="hidden" name="ltmpl" id="ltmpl"
           value="default" />
  <input type="hidden" name="ss" id="ss"
           value="1" />
  <input type="hidden" name="timeStmp" id="timeStmp"
       value=''/>
<input type="hidden" name="secTok" id="secTok"
value=''/>  <input type="hidden" name="GALX" value="UMhpqk5TuQY" />
  <input type="text" name="Email"  id="Email" size="18" value="" class='gaia le val'  />
  @login.jmorais.com  Password:
  <input type="password"
   name="Passwd" id="Passwd"
  size="18"     class="gaia le val"   />

  <input type="submit" class="gaia le button" name="signIn" id="signIn"
           value="Sign in" />

我使用查看源功能从我自己的 GApps-hoste 域中查找隐藏字段。请让我知道你是怎么做的,因为我很好奇这有多简单。

于 2012-12-11T07:12:48.143 回答