-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
137 lines (118 loc) · 4.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sign commits through the GitHub/GitLab web UI</title>
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/color/default.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,600,700" rel="stylesheet">
<!-- =======================================================
Theme Name: Plato
Theme URL: https://bootstrapmade.com/plato-responsive-bootstrap-website-template/
Author: BootstrapMade.com
======================================================= -->
</head>
<body>
<header>
<!-- Navbar
================================================== -->
<div class="cbp-af-header">
<div class=" cbp-af-inner">
<div class="container">
<div class="row">
<div class="span4">
<div class="logo">
<h1>
<img src="assets/img/logo.png" alt="le-git-imate" />
</h1>
</div>
</div>
<div class="span8">
<div class="navbar">
<div class="navbar-inner">
<nav>
<ul class="nav topnav">
<!--li class="dropdown active">
<a href="index.html">Home</a>
</li>
<li class="dropdown">
<a href="#">Documentation</a>
<ul class="dropdown-menu">
<li><a href="#">Accounts</a></li>
<li><a href="#">Key Management</a></li>
</ul>
</li-->
<li>
<a href="mailto:hammad.afzali@gmail.com">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!--Content
================================================== -->
<section id="intro">
<div class="container">
<div class="row">
<div class="span6">
<h2>le-git-imate</h2>
<p class="lead">
A defense mechanism to mitigate attacks against web-based Git hosting services such as GitHub and GitLab.
le-git-imate pioneers the ability to sign a web UI commit and thus create a true GPG-signed Git commit object in the browser.
</p>
<p class="lead">
Main features provided by le-git-imate:
</p>
<ul class="list list-ok strong bigger">
<li>Same security guarantees offered by Git's standard commit signing</li>
<li>No server-side changes on web-based Git hosting services</li>
<li>Preserve the ease of use of web UI</li>
<li>Minimal impact on users experience</li>
<li>Efficient (add no significant delay)</li>
</ul>
<p class="lead" >
le-git-imate is an open source project hosted on <a href="https://github.com/le-git-imate/le-git-imate" target="_blank">GitHub</a>.
Use of the source code is governed by the Licensed under the Apache License, Version 2.0 that can be found
at <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">here</a>.
</p>
<p class="lead">
For more technical details, please refer to our paper
<a href="assets/pub/afzali2020towards.pdf" target="_blank"> Towards adding verifiability to web-based Git repositories</a>.
</p>
<a id="installBtn" data-toggle="popover" class="btn btn-primary btn-huge" href="https://github.com/le-git-imate/le-git-imate" role="button" data-original-title="" target="_blank">Install le-git-imate now</a>
</div>
<div class="span6">
<div class="group section-wrap upper" id="upper">
<div class="section-2 group">
<!--ul id="img" class="rs-slider">
<li class="group">
<a href="#"> <img src="assets/img/slides/slide1.png" alt="" /> </a>
</li>
<li class="group">
<a href="#" class="slide-parent"> <img src="assets/img/slides/slide2.png" alt=""/></a>
</li>
</ul-->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer
================================================== -->
<footer class="footer">
<div class="container">
<p>© le-git-imate 2021</p>
</div>
</footer>
</body>
</html>