~edwargix/git.sr.ht

08b64aa49cdf885ce35dcdf963714a48aa6a6f68 — Drew DeVault 8 years ago b353351
Fix title tags on manage page
1 files changed, 12 insertions(+), 6 deletions(-)

M gitsrht/templates/manage.html
M gitsrht/templates/manage.html => gitsrht/templates/manage.html +12 -6
@@ 31,33 31,39 @@
        <fieldset class="form-group">
          <legend>Visibility</legend>
          <div class="form-check form-check-inline">
            <label class="form-check-label">
            <label
              class="form-check-label"
              title="Publically visible and listed on your profile"
            >
              <input
                class="form-check-input"
                type="radio"
                name="repo-visibility"
                value="public"
                title="Publically visible and listed on your profile"
                checked> Public
            </label>
          </div>
          <div class="form-check form-check-inline">
            <label class="form-check-label">
            <label
                class="form-check-label"
                title="Visible to anyone with the link, but not shown on your profile"
              >
              <input
                class="form-check-input"
                type="radio"
                name="repo-visibility"
                title="Visible to anyone with the link, but not shown on your profile"
                value="unlisted"> Unlisted
            </label>
          </div>
          <div class="form-check form-check-inline">
            <label class="form-check-label">
            <label
              class="form-check-label"
              title="Only visible to you and your collaborators"
            >
              <input
                class="form-check-input"
                type="radio"
                name="repo-visibility"
                title="Only visible to you and your collaborators"
                value="private"> Private
            </label>
          </div>